Returns data from the server-side DataPortal to the client-side DataPortal. More...
Public Member Functions | |
DataPortalResult () | |
Creates an instance of the object. More... | |
DataPortalResult (object returnObject) | |
Creates an instance of the object. More... | |
DataPortalResult (object returnObject, ContextDictionary globalContext) | |
Creates an instance of the object. More... | |
DataPortalResult (object returnObject, Exception ex, ContextDictionary globalContext) | |
Creates an instance of the object. More... | |
Properties | |
object | ReturnObject [get] |
The business object being returned from the server. More... | |
Exception | Error [get] |
Error that occurred during the DataPotal call. More... | |
ContextDictionary | GlobalContext [get] |
The global context being returned from the server. More... | |
Returns data from the server-side DataPortal to the client-side DataPortal.
Intended for internal CSLA .NET use only.
Definition at line 20 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | ) |
Creates an instance of the object.
Definition at line 43 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | object | returnObject | ) |
Creates an instance of the object.
returnObject | Object to return as part of the result. |
Definition at line 53 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | object | returnObject, |
ContextDictionary | globalContext | ||
) |
Creates an instance of the object.
returnObject | Object to return as part of the result. |
globalContext | Global context delivered via current reuest from the server |
Definition at line 66 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | object | returnObject, |
Exception | ex, | ||
ContextDictionary | globalContext | ||
) |
Creates an instance of the object.
returnObject | Object to return as part of the result. |
ex | Error that occurred during the DataPotal call. This will be null if no errors occurred. |
globalContext | Global context delivered via current reuest from the server |
Definition at line 83 of file Server/DataPortalResult.cs.
|
get |
Error that occurred during the DataPotal call.
This will be null if no errors occurred.
Definition at line 32 of file Server/DataPortalResult.cs.
|
get |
The global context being returned from the server.
Definition at line 38 of file Server/DataPortalResult.cs.
|
get |
The business object being returned from the server.
Definition at line 26 of file Server/DataPortalResult.cs.