CustomExpressionEventArgs 构造函数

定义

使用数据源对象和计算的参数值的字典初始化类的新实例 CustomExpressionEventArgs

public:
 CustomExpressionEventArgs(System::Linq::IQueryable ^ source, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ values);
public CustomExpressionEventArgs(System.Linq.IQueryable source, System.Collections.Generic.IDictionary<string,object> values);
new System.Web.UI.WebControls.Expressions.CustomExpressionEventArgs : System.Linq.IQueryable * System.Collections.Generic.IDictionary<string, obj> -> System.Web.UI.WebControls.Expressions.CustomExpressionEventArgs
Public Sub New (source As IQueryable, values As IDictionary(Of String, Object))

参数

source
IQueryable

要使用的数据源对象。

values
IDictionary<String,Object>

对象的参数集合中 CustomExpression 计算的值。

适用于