DataRowAction |
serializable, flag |
System.Data (system.data.dll) |
enum |
This enumeration describes an action performed on a row that causes
an event to be raised. It is used by the Action
property of the DataRowChangeEventArgs class to
indicate what caused the event to be raised.
public enum DataRowAction {
Nothing = 0x00000000,
Delete = 0x00000001,
Change = 0x00000002,
Rollback = 0x00000004,
Commit = 0x00000008,
Add = 0x00000010
}
Hierarchy
System.Object
System.ValueType System.Enum(System.IComparable, System.IFormattable
, System.IConvertible)
DataRowAction
Returned By
DataRowChangeEventArgs.Action
Passed To
DataRowChangeEventArgs.DataRowChangeEventArgs( )
|