GridViewUpdatedEventArgs(Int32, Exception) 构造函数

定义

初始化 GridViewUpdatedEventArgs 类的新实例。

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)

参数

affectedRows
Int32

受更新操作影响的行数。

e
Exception

执行更新操作时引发的异常。 如果未引发异常,则将 null 用于此参数。

注解

下表显示了 GridViewUpdatedEventArgs 类的某个实例的初始属性值。

属性 初始值
AffectedRows affectedRows 参数的值。
Exception 参数 System.Exception 中包含的 e 对象。
ExceptionHandled 初始化为 false.
KeepInEditMode 初始化为 false.

备注

此构造函数主要供控件开发人员在引发事件时使用。

适用于

另请参阅