CustomExpressionEventArgs Constructor

Definition

Initializes a new instance of the CustomExpressionEventArgs class using the data source object and a dictionary of evaluated parameter values.

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))

Parameters

source
IQueryable

The data source object to use.

values
IDictionary<String,Object>

The evaluated values from the parameter collection of the CustomExpression object.

Applies to