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 对象的参数集合中的计算值。

适用于