C# Класс Nettiers.AdventureWorks.Web.Data.EntityDataSourceMethodEventArgs

Provides data for the Inserting, Updating, and Deleting events of the EntityDataSource control.
Наследование: CancelEventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

EntityDataSourceMethodEventArgs() публичный Метод

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.
Результат System

EntityDataSourceMethodEventArgs() публичный Метод

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.
Результат System

EntityDataSourceMethodEventArgs() публичный Метод

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.
Результат System