GridViewUpdatedEventArgs(Int32, Exception) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the GridViewUpdatedEventArgs class.
public:
GridViewUpdatedEventArgs(int affectedRows, Exception ^ e);
public GridViewUpdatedEventArgs (int affectedRows, Exception e);
new System.Web.UI.WebControls.GridViewUpdatedEventArgs : int * Exception -> System.Web.UI.WebControls.GridViewUpdatedEventArgs
Public Sub New (affectedRows As Integer, e As Exception)
Parameters
- affectedRows
- Int32
The number of rows that were affected by the update operation.
The exception that was raised when the update operation was performed. If no exception was raised, use null
for this parameter.
Remarks
The following table shows initial property values for an instance of the GridViewUpdatedEventArgs class.
Property | Initial Value |
---|---|
AffectedRows | The value of the affectedRows parameter. |
Exception | The System.Exception object that is contained in the e parameter. |
ExceptionHandled | Initialized to false . |
KeepInEditMode | Initialized to false . |
Note
This constructor is primarily used by control developers when they raise events.