Returns data from the server-side DataPortal to the client-side DataPortal. More...
Public Member Functions | |
DataPortalResult () | |
Creates an instance of the type. More... | |
DataPortalResult (ApplicationContext applicationContext, object returnObject) | |
Creates an instance of the type. More... | |
DataPortalResult (ApplicationContext applicationContext, object returnObject, Exception ex) | |
Creates an instance of the type. 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... | |
Properties inherited from Csla.Core.IUseApplicationContext | |
ApplicationContext | ApplicationContext [getset] |
Gets or sets the current ApplicationContext object. More... | |
Returns data from the server-side DataPortal to the client-side DataPortal.
Intended for internal CSLA .NET use only.
Definition at line 19 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | ) |
Creates an instance of the type.
Definition at line 39 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | ApplicationContext | applicationContext, |
object | returnObject | ||
) |
Creates an instance of the type.
applicationContext | |
returnObject | Object to return as part of the result. |
Definition at line 49 of file Server/DataPortalResult.cs.
Csla.Server.DataPortalResult.DataPortalResult | ( | ApplicationContext | applicationContext, |
object | returnObject, | ||
Exception | ex | ||
) |
Creates an instance of the type.
applicationContext | |
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. |
Definition at line 65 of file Server/DataPortalResult.cs.
|
get |
Error that occurred during the DataPotal call.
This will be null if no errors occurred.
Definition at line 34 of file Server/DataPortalResult.cs.
|
get |
The business object being returned from the server.
Definition at line 28 of file Server/DataPortalResult.cs.