SqlDataSourceStatusEventArgs.SqlDataSourceStatusEventArgs Constructor
.NET Framework 3.0
Initializes a new instance of the SqlDataSourceStatusEventArgs class, using the specified output parameters, return value, and number of rows affected by the database operation.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: SqlDataSourceStatusEventArgs ( DbCommand^ command, int affectedRows, Exception^ exception )
public SqlDataSourceStatusEventArgs ( DbCommand command, int affectedRows, Exception exception )
public function SqlDataSourceStatusEventArgs ( command : DbCommand, affectedRows : int, exception : Exception )
Not applicable.
Parameters
- command
The DbCommand that represents the database query, command, or stored procedure that is submitted to the database by the SqlDataSource control.
- affectedRows
The number of rows affected by the database operation, if applicable.
- exception
An Exception thrown by the database operation, if applicable.
Community Additions
ADD
Show: