ObjectDataSourceStatusEventArgs Constructors
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 ObjectDataSourceStatusEventArgs class.
Overloads
ObjectDataSourceStatusEventArgs(Object, IDictionary) |
Initializes a new instance of the ObjectDataSourceStatusEventArgs class using the specified output parameters and return value. |
ObjectDataSourceStatusEventArgs(Object, IDictionary, Exception) |
Initializes a new instance of the ObjectDataSourceStatusEventArgs class using the specified output parameters, return value, and exception. |
ObjectDataSourceStatusEventArgs(Object, IDictionary)
Initializes a new instance of the ObjectDataSourceStatusEventArgs class using the specified output parameters and return value.
public:
ObjectDataSourceStatusEventArgs(System::Object ^ returnValue, System::Collections::IDictionary ^ outputParameters);
public ObjectDataSourceStatusEventArgs (object returnValue, System.Collections.IDictionary outputParameters);
new System.Web.UI.WebControls.ObjectDataSourceStatusEventArgs : obj * System.Collections.IDictionary -> System.Web.UI.WebControls.ObjectDataSourceStatusEventArgs
Public Sub New (returnValue As Object, outputParameters As IDictionary)
Parameters
- returnValue
- Object
An object that represents a return value for the completed database operation.
- outputParameters
- IDictionary
An IDictionary of name/value pairs of parameter objects.
Remarks
The returnValue
parameter can be any object that is returned by a call to the business object data method. The outputParameters
parameter is an IDictionary collection of name/value pairs that match those in the method signature and are passed by reference.
See also
Applies to
ObjectDataSourceStatusEventArgs(Object, IDictionary, Exception)
Initializes a new instance of the ObjectDataSourceStatusEventArgs class using the specified output parameters, return value, and exception.
public:
ObjectDataSourceStatusEventArgs(System::Object ^ returnValue, System::Collections::IDictionary ^ outputParameters, Exception ^ exception);
public ObjectDataSourceStatusEventArgs (object returnValue, System.Collections.IDictionary outputParameters, Exception exception);
new System.Web.UI.WebControls.ObjectDataSourceStatusEventArgs : obj * System.Collections.IDictionary * Exception -> System.Web.UI.WebControls.ObjectDataSourceStatusEventArgs
Public Sub New (returnValue As Object, outputParameters As IDictionary, exception As Exception)
Parameters
- returnValue
- Object
An object that represents a return value for the completed database operation.
- outputParameters
- IDictionary
An IDictionary of name/value pairs of parameter objects.
Remarks
The returnValue
parameter can be any object that is returned by a call to the business object data method. The outputParameters
parameter is an IDictionary collection of name/value pairs that match those in the method signature and are passed by reference. The exception
parameter is an Exception exception that wraps any exceptions that are thrown by the method that is called by the ObjectDataSource control during a data operation. If the exception is not handled by an OnSelected, OnUpdated, OnInserted, or OnDeleted method, it is thrown by the ObjectDataSource control after the data operation returns.