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[] |
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 System.Threading.Tasks.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(System.Threading.CancellationToken, ConfirmedData)
Calls the HTTP Post method on the link for the relation “confirm” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<string>> PostToConfirmRelationForStringAsync(System.Threading.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”.
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.