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

Provides data for the Inserting, Updating, and Deleting events of the EntityDataSource control.
Inheritance: CancelEventArgs
Afficher le fichier Open project: netTiers/netTiers Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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.
Résultat System

EntityDataSourceMethodEventArgs() public méthode

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.
Résultat System

EntityDataSourceMethodEventArgs() public méthode

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.
Résultat System