Class ServiceDescriptionStatistics
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class ServiceDescriptionStatistics : IRelationsWithProxy
Properties
CfsRelationLink
Gets the Uri of the link for the relation “cfs”.
Declaration
public string CfsRelationLink { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Returns the uri of the link for the relation “cfs” if it exists, or
Links
Declaration
public Link[] Links { get; set; }
Property Value
Type | Description |
---|---|
Link[] |
Methods
PostToCfsRelationForStream(CFSStatisticGeneral)
Calls the HTTP Post method on the link for the relation “cfs”.
Declaration
public System.IO.Stream PostToCfsRelationForStream(CFSStatisticGeneral dataToSend)
Parameters
Type | Name | Description |
---|---|---|
CFSStatisticGeneral | dataToSend | The data to send. This data is written into the request body. |
Returns
Type | Description |
---|---|
System.IO.Stream | The content of the response. |
PostToCfsRelationForStreamAsync(CFSStatisticGeneral)
Calls the HTTP Post method on the link for the relation “cfs” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<System.IO.Stream>> PostToCfsRelationForStreamAsync(CFSStatisticGeneral dataToSend)
Parameters
Type | Name | Description |
---|---|---|
CFSStatisticGeneral | dataToSend | The data to send. This data is written into the request body. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<System.IO.Stream>> | A task which runs the request. |
Remarks
This method follows the link for the relation “cfs”.
PostToCfsRelationForStreamAsync(System.Threading.CancellationToken, CFSStatisticGeneral)
Calls the HTTP Post method on the link for the relation “cfs” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<System.IO.Stream>> PostToCfsRelationForStreamAsync(System.Threading.CancellationToken cancellationToken, CFSStatisticGeneral dataToSend)
Parameters
Type | Name | Description |
---|---|---|
System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request. |
CFSStatisticGeneral | dataToSend | The data to send. This data is written into the request body. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<System.IO.Stream>> | A task which runs the request. |
Remarks
This method follows the link for the relation “cfs”.
SetProxy(HttpClientProxy)
Sets the HTTP communication proxy which is used in further HTTP communication.
Declaration
public void SetProxy(HttpClientProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
HttpClientProxy | proxy | The |
Remarks
The HTTP proxy is used to handle the HTTP requests which are created by this instance. The proxy is used in case a request is sent to a URL which is resolved from a link.