Class DataSourceMethodEventArgs
Provides data for the Inserting, Updating, and Deleting events of the GenericDataSource<TObject, TCollection, TKey> control.
Namespace: EPiServer.Web.WebControls
Assembly: EPiServer.Cms.AspNet.dll
Version: 11.20.7Syntax
public class DataSourceMethodEventArgs : CancelEventArgs
Constructors
DataSourceMethodEventArgs(IDictionary)
Initializes a new instance of the DataSourceMethodEventArgs class using the specified input parameters collection.
Declaration
public DataSourceMethodEventArgs(IDictionary inputParameters)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.IDictionary | inputParameters | An System.Collections.IDictionary of Parameter objects that represent the names of the parameters of the object method and their associated values. |
Properties
InputParameters
Gets a collection that contains object method parameters and their values.
Declaration
public IDictionary InputParameters { get; }
Property Value
Type | Description |
---|---|
System.Collections.IDictionary | An System.Collections.IDictionary of name/value pairs that represent the object method parameters and their corresponding values. |