Class ServiceConnectionTransportData
Definitions of the HTTP message handling and message processing.
Inheritance
System.Object
    ServiceConnectionTransportData
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  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.  | 
      
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.  | 
      
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.