DetailsViewDeletedEventArgs(Int32, Exception) Constructor

Definition

Initializes a new instance of the DetailsViewDeletedEventArgs class.

public:
 DetailsViewDeletedEventArgs(int affectedRows, Exception ^ e);
public DetailsViewDeletedEventArgs (int affectedRows, Exception e);
new System.Web.UI.WebControls.DetailsViewDeletedEventArgs : int * Exception -> System.Web.UI.WebControls.DetailsViewDeletedEventArgs
Public Sub New (affectedRows As Integer, e As Exception)

Parameters

affectedRows
Int32

The number of rows affected by the delete operation.

e
Exception

An Exception that represents the exception raised when the delete operation was performed. If no exception is raised, use null for this parameter.

Remarks

Use this constructor to initialize a new instance of the DetailsViewDeletedEventArgs class.

The following table shows the initial property values for an instance of DetailsViewDeletedEventArgs.

Property Initial value
AffectedRows The value of the affectedRows parameter.
Exception The System.Exception contained in the e parameter.
ExceptionHandled Initialized to false.

Note

This constructor is used primarily by control developers when raising events.

Applies to

See also