C# Class Nettiers.AdventureWorks.Web.Data.EntityDataSourceMethodEventArgs

Provides data for the Inserting, Updating, and Deleting events of the EntityDataSource control.
Inheritance: CancelEventArgs
ファイルを表示 Open project: netTiers/netTiers Class Usage Examples

Public Methods

Method Description
EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters ) : System

Initializes a new instance of the EntityDataSourceEventArgs class.

EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters, int affectedRows ) : System

Initializes a new instance of the EntityDataSourceEventArgs class.

EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters, int affectedRows, Exception exception ) : System

Initializes a new instance of the EntityDataSourceEventArgs class.

Method Details

EntityDataSourceMethodEventArgs() public method

Initializes a new instance of the EntityDataSourceEventArgs class.
public EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters ) : System
entityList IEnumerable The objects on which the current operation is being performed.
index int The index of the current item being operated on.
inputParameters IDictionary A collection of name/value pairs submitted during the current operation.
return System

EntityDataSourceMethodEventArgs() public method

Initializes a new instance of the EntityDataSourceEventArgs class.
public EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters, int affectedRows ) : System
entityList IEnumerable The objects on which the current operation is being performed.
index int The index of the current item being operated on.
inputParameters IDictionary A collection of name/value pairs submitted during the current operation.
affectedRows int The number of rows that are affected by the data operation.
return System

EntityDataSourceMethodEventArgs() public method

Initializes a new instance of the EntityDataSourceEventArgs class.
public EntityDataSourceMethodEventArgs ( IEnumerable entityList, int index, IDictionary inputParameters, int affectedRows, Exception exception ) : System
entityList IEnumerable The objects on which the current operation is being performed.
index int The index of the current item being operated on.
inputParameters IDictionary A collection of name/value pairs submitted during the current operation.
affectedRows int The number of rows that are affected by the data operation.
exception System.Exception An System.Exception that wraps any internal exceptions thrown during the method call.
return System