Class ServiceConnectionTransportData
Definitions of the HTTP message handling and message processing.
Inheritance
Inherited Members
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class ServiceConnectionTransportData
Properties
AcceptLanguage
Gets or sets the accept language header.
Declaration
public StringWithQualityHeaderValue[] AcceptLanguage { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Http.Headers.StringWithQualityHeaderValue[] | The accept language header. |
ApplicationContext
Gets or sets the application context.
Declaration
public string ApplicationContext { get; set; }
Property Value
Type | Description |
---|---|
System.String | The application context. |
Remarks
You should specify this value in order to identify your application on more granular level. It is used to give more detailed context for your application or operation.
CancellationToken
Gets or sets the cancellation token.
Declaration
public CancellationToken CancellationToken { get; set; }
Property Value
Type | Description |
---|---|
System.Threading.CancellationToken | The cancellation token. |
HttpClientHandler
Gets or sets the HTTP client handler.
Declaration
public HttpMessageHandler HttpClientHandler { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Http.HttpMessageHandler | The HTTP client handler. |
ResiliencePolicyOptions
Gets or sets the resilience policy options.
Declaration
public ResiliencePolicyOptions ResiliencePolicyOptions { get; set; }
Property Value
Type | Description |
---|---|
ResiliencePolicyOptions | The resilience policy options. |
UserAgent
Gets or sets additional user agents.
Declaration
public ProductInfoHeaderValue[] UserAgent { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Http.Headers.ProductInfoHeaderValue[] | The user agent. |
Remarks
You should specify these values in order to identify you application.
If this parameter is set to null
then the process name and version of you application is used as user agent string. If you do not want to submit any user agent, you must set this parameter to an empty array.