18 private System.Collections.IDictionary _keys;
19 private System.Collections.IDictionary _values;
20 private System.Collections.IDictionary _oldValues;
21 private int _rowsAffected;
36 get {
return _rowsAffected; }
37 set { _rowsAffected = value; }
47 public System.Collections.IDictionary
Keys
59 public System.Collections.IDictionary
Values
61 get {
return _values; }
74 get {
return _oldValues; }
80 public UpdateObjectArgs(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)
84 _oldValues = oldValues;
Argument object used in the UpdateObject event.
System.Collections.IDictionary Values
The list of data values entered by the user.
System.Collections.IDictionary Keys
The list of key values entered by the user.
int RowsAffected
Gets or sets the number of rows affected while handling this event.
UpdateObjectArgs(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)
Creates an instance of the object.
System.Collections.IDictionary OldValues
The list of old data values maintained by data binding.