Class ExtendedDecisionOperations
Operations which can be executed on a decision only from form interface.
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class ExtendedDecisionOperations : IRelationsWithProxy
  Properties
ConfirmRelationLink
Gets the Uri of the link for the relation “confirm”.
Declaration
public string ConfirmRelationLink { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
Returns the uri of the link for the relation “confirm” if it exists, or 
Links
Declaration
public Link[] Links { get; set; }
  Property Value
| Type | Description | 
|---|---|
| Link[] | 
StampBestPositionRelationLink
Gets the Uri of the link for the relation “stampBestPosition”.
Declaration
public string StampBestPositionRelationLink { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
Returns the uri of the link for the relation “stampBestPosition” if it exists, or 
Methods
PostToConfirmRelationForString(ConfirmedData)
Calls the HTTP Post method on the link for the relation “confirm”.
Declaration
public string PostToConfirmRelationForString(ConfirmedData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| ConfirmedData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| System.String | The content of the response.  | 
      
PostToConfirmRelationForStringAsync(ConfirmedData)
Calls the HTTP Post method on the link for the relation “confirm” asynchronously.
Declaration
public Task<DeserializedHttpResponse<string>> PostToConfirmRelationForStringAsync(ConfirmedData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| ConfirmedData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<System.String>> | A task which runs the request.  | 
      
Remarks
This method follows the link for the relation “confirm”.
PostToConfirmRelationForStringAsync(CancellationToken, ConfirmedData)
Calls the HTTP Post method on the link for the relation “confirm” asynchronously.
Declaration
public Task<DeserializedHttpResponse<string>> PostToConfirmRelationForStringAsync(CancellationToken cancellationToken, ConfirmedData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request.  | 
      
| ConfirmedData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<System.String>> | A task which runs the request.  | 
      
Remarks
This method follows the link for the relation “confirm”.
PostToStampBestPositionRelationForDWPoint(StampPositionData)
Calls the HTTP Post method on the link for the relation “stampBestPosition”.
Declaration
public DWPoint PostToStampBestPositionRelationForDWPoint(StampPositionData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| StampPositionData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| DWPoint | The content of the response.  | 
      
PostToStampBestPositionRelationForDWPointAsync(StampPositionData)
Calls the HTTP Post method on the link for the relation “stampBestPosition” asynchronously.
Declaration
public Task<DeserializedHttpResponse<DWPoint>> PostToStampBestPositionRelationForDWPointAsync(StampPositionData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| StampPositionData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<DWPoint>> | A task which runs the request.  | 
      
Remarks
This method follows the link for the relation “stampBestPosition”.
PostToStampBestPositionRelationForDWPointAsync(CancellationToken, StampPositionData)
Calls the HTTP Post method on the link for the relation “stampBestPosition” asynchronously.
Declaration
public Task<DeserializedHttpResponse<DWPoint>> PostToStampBestPositionRelationForDWPointAsync(CancellationToken cancellationToken, StampPositionData dataToSend)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request.  | 
      
| StampPositionData | dataToSend | The data to send. This data is written into the request body.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<DWPoint>> | A task which runs the request.  | 
      
Remarks
This method follows the link for the relation “stampBestPosition”.
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 System.Net.Http.HttpClient instance which is used in further HTTP communication.  | 
      
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.