📄 filterexpressionhelpercollection.cs
字号:
using System;
using Microsoft.Crm.Sandbox.Mobile.CrmServiceSdk;
using Microsoft.Crm.Sandbox.Mobile.Helpers;
namespace Microsoft.Crm.Sandbox.Mobile.Helpers.Collection
{
public class FilterExpressionHelperCollection : System.Collections.CollectionBase
{
#region Properties
/// <summary>
/// Provides access to the underlying collection of FilterExpressionHelpers
/// </summary>
public FilterExpressionHelper this[int index]
{
get
{
return (FilterExpressionHelper)List[index];
}
}
#endregion
#region Methods
/// <summary>
/// Used to add a child filter to the current/parent filter
/// </summary>
/// <param name="childFilter">A FilterExpressionHelper object that will be added as a child filter to the main filter</param>
public void AddFilter(FilterExpressionHelper childFilter)
{
List.Add(childFilter);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -