Provides information about the DataPortal call. More...
Public Member Functions | |
DataPortalEventArgs (Server.DataPortalContext dataPortalContext, Type objectType, object obj, DataPortalOperations operation) | |
Creates an instance of the type. More... | |
DataPortalEventArgs (Server.DataPortalContext dataPortalContext, Type objectType, object obj, DataPortalOperations operation, Exception exception) | |
Creates an instance of the type. More... | |
Properties | |
Server.DataPortalContext | DataPortalContext [get] |
The DataPortalContext object passed to the server-side DataPortal. More... | |
DataPortalOperations | Operation [get] |
Gets the requested data portal operation. More... | |
Exception | Exception [get] |
Gets a reference to any exception that occurred during the data portal call. More... | |
Type | ObjectType [get] |
Gets the object type being processed by the data portal. More... | |
object | Object [get] |
Gets the criteria object or business object being processed by the data portal. More... | |
Provides information about the DataPortal call.
Definition at line 16 of file DataPortalEventArgs.cs.
Csla.DataPortalEventArgs.DataPortalEventArgs | ( | Server.DataPortalContext | dataPortalContext, |
Type | objectType, | ||
object | obj, | ||
DataPortalOperations | operation | ||
) |
Creates an instance of the type.
dataPortalContext | Data portal context object. |
objectType | Business object type. |
obj | Criteria or business object for request. |
operation | Data portal operation being performed. |
Definition at line 88 of file DataPortalEventArgs.cs.
Csla.DataPortalEventArgs.DataPortalEventArgs | ( | Server.DataPortalContext | dataPortalContext, |
Type | objectType, | ||
object | obj, | ||
DataPortalOperations | operation, | ||
Exception | exception | ||
) |
Creates an instance of the type.
dataPortalContext | Data portal context object. |
objectType | Business object type. |
obj | Criteria or business object for request. |
operation | Data portal operation being performed. |
exception | Exception encountered during processing. |
Definition at line 114 of file DataPortalEventArgs.cs.
|
get |
The DataPortalContext object passed to the server-side DataPortal.
Definition at line 28 of file DataPortalEventArgs.cs.
|
get |
Gets a reference to any exception that occurred during the data portal call.
This property will return Nothing (null in C#) if no exception occurred. Exceptions are returned only as part of a data portal complete event or method.
Definition at line 50 of file DataPortalEventArgs.cs.
|
get |
Gets the criteria object or business object being processed by the data portal.
Definition at line 68 of file DataPortalEventArgs.cs.
|
get |
Gets the object type being processed by the data portal.
Definition at line 59 of file DataPortalEventArgs.cs.
|
get |
Gets the requested data portal operation.
Definition at line 36 of file DataPortalEventArgs.cs.