SqlDataSourceStatusEventArgs(DbCommand, Int32, Exception) Constructor

Definition

Initializes a new instance of the SqlDataSourceStatusEventArgs class, using the specified output parameters, return value, and number of rows affected by the database operation.

public:
 SqlDataSourceStatusEventArgs(System::Data::Common::DbCommand ^ command, int affectedRows, Exception ^ exception);
public SqlDataSourceStatusEventArgs (System.Data.Common.DbCommand command, int affectedRows, Exception exception);
new System.Web.UI.WebControls.SqlDataSourceStatusEventArgs : System.Data.Common.DbCommand * int * Exception -> System.Web.UI.WebControls.SqlDataSourceStatusEventArgs
Public Sub New (command As DbCommand, affectedRows As Integer, exception As Exception)

Parameters

command
DbCommand

The DbCommand that represents the database query, command, or stored procedure that is submitted to the database by the SqlDataSource control.

affectedRows
Int32

The number of rows affected by the database operation, if applicable.

exception
Exception

An Exception thrown by the database operation, if applicable.

Applies to

See also