Implements a data portal proxy to relay data portal calls to a remote application server by using http. More...
Public Member Functions | |
HttpProxy (ApplicationContext applicationContext, HttpClient httpClient, HttpProxyOptions options) | |
Creates an instance of the type, initializing it to use the supplied HttpClient object and options. More... | |
Public Member Functions inherited from Csla.DataPortalClient.DataPortalProxy | |
DataPortalProxy (ApplicationContext applicationContext) | |
virtual async Task< DataPortalResult > | Create (Type objectType, object criteria, DataPortalContext context, bool isSync) |
Called by DataPortal to create a new business object. More... | |
virtual async Task< DataPortalResult > | Fetch (Type objectType, object criteria, DataPortalContext context, bool isSync) |
Called by DataPortal to load an existing business object. More... | |
virtual async Task< DataPortalResult > | Update (object obj, DataPortalContext context, bool isSync) |
Called by DataPortal to update a business object. More... | |
virtual async Task< DataPortalResult > | Delete (Type objectType, object criteria, DataPortalContext context, bool isSync) |
Called by DataPortal to delete a business object. More... | |
Protected Member Functions | |
virtual HttpClientHandler | GetHttpClientHandler () |
Gets an HttpClientHandler for use in initializing the HttpClient instance. More... | |
virtual HttpClient | GetHttpClient () |
Gets an HttpClient object for use in communication with the server. More... | |
virtual WebClient | GetWebClient () |
Gets an WebClient object for use in communication with the server. More... | |
override async Task< byte[]> | CallDataPortalServer (byte[] serialized, string operation, string routingToken, bool isSync) |
Select client to make request based on isSync parameter and return response from server More... | |
virtual void | SetHttpRequestHeaders (HttpRequestMessage request) |
Override to set headers or other properties of the HttpRequestMessage before it is sent to the server. More... | |
Protected Member Functions inherited from Csla.DataPortalClient.DataPortalProxy | |
virtual CriteriaRequest | ConvertRequest (CriteriaRequest request) |
Override this method to manipulate the message request data sent to the server. More... | |
virtual UpdateRequest | ConvertRequest (UpdateRequest request) |
Override this method to manipulate the message request data sent to the server. More... | |
virtual DataPortalResponse | ConvertResponse (DataPortalResponse response) |
Override this method to manipulate the message request data returned from the server. More... | |
Properties | |
static bool | UseTextSerialization = false [getset] |
Gets or sets a value indicating whether to use text/string serialization instead of the default binary serialization. More... | |
Properties inherited from Csla.DataPortalClient.DataPortalProxy | |
ApplicationContext | ApplicationContext [getset] |
Gets or sets the current ApplicationContext object. More... | |
virtual bool | IsServerRemote [get] |
Gets a value indicating whether the data portal is hosted on a remote server. More... | |
virtual int | Timeout [getset] |
Gets or sets the Client timeout in milliseconds (0 uses default timeout). More... | |
string | DataPortalUrl [getprotected set] |
Gets the URL address for the data portal server used by this proxy instance. More... | |
Properties inherited from Csla.DataPortalClient.IDataPortalProxy | |
bool | IsServerRemote [get] |
Get a value indicating whether this proxy will invoke a remote data portal server, or run the "server-side" data portal in the caller's process and AppDomain. More... | |
Implements a data portal proxy to relay data portal calls to a remote application server by using http.
Definition at line 22 of file HttpProxy.cs.
Csla.Channels.Http.HttpProxy.HttpProxy | ( | ApplicationContext | applicationContext, |
HttpClient | httpClient, | ||
HttpProxyOptions | options | ||
) |
Creates an instance of the type, initializing it to use the supplied HttpClient object and options.
applicationContext | |
httpClient | HttpClient instance |
options | Options for HttpProxy |
Definition at line 31 of file HttpProxy.cs.
|
protectedvirtual |
Select client to make request based on isSync parameter and return response from server
serialized | Serialised request |
operation | DataPortal operation |
routingToken | Routing Tag for server |
isSync | True if the client-side proxy should synchronously invoke the server. |
Implements Csla.DataPortalClient.DataPortalProxy.
Definition at line 103 of file HttpProxy.cs.
|
protectedvirtual |
Gets an HttpClient object for use in communication with the server.
Definition at line 53 of file HttpProxy.cs.
|
protectedvirtual |
Gets an HttpClientHandler for use in initializing the HttpClient instance.
Reimplemented in Csla.Channels.Http.HttpCompressionProxy.
Definition at line 44 of file HttpProxy.cs.
|
protectedvirtual |
Gets an WebClient object for use in communication with the server.
Reimplemented in Csla.Channels.Http.HttpCompressionProxy.
Definition at line 83 of file HttpProxy.cs.
|
protectedvirtual |
Override to set headers or other properties of the HttpRequestMessage before it is sent to the server.
request | HttpRequestMessage instance |
Reimplemented in Csla.Channels.Http.HttpCompressionProxy.
Definition at line 115 of file HttpProxy.cs.
|
staticgetset |
Gets or sets a value indicating whether to use text/string serialization instead of the default binary serialization.
Definition at line 93 of file HttpProxy.cs.