Class ServiceConnectionTransportData
Definitions of the HTTP message handling and message processing.
Inheritance
System.Object
ServiceConnectionTransportData
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class ServiceConnectionTransportData : object
Properties
AcceptLanguage
Gets or sets the accept language header.
Declaration
public StringWithQualityHeaderValue[] AcceptLanguage { get; set; }
Property Value
Type | Description |
---|---|
StringWithQualityHeaderValue[] | The accept language header. |
CancellationToken
Gets or sets the cancellation token.
Declaration
public System.Threading.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 |
---|---|
HttpMessageHandler | The HTTP client handler. |
UserAgent
Gets or sets additional user agents.
Declaration
public ProductInfoHeaderValue[] UserAgent { get; set; }
Property Value
Type | Description |
---|---|
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.