SqlDataSourceStatusEventArgs(DbCommand, 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 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.