Class UserInfo
Information related to a user
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class UserInfo : IRelationsWithProxy
Properties
Links
Declaration
public Link[] Links { get; set; }
Property Value
Type | Description |
---|---|
Link[] |
LoginInfo
Details about user login
Declaration
public LoginInfo LoginInfo { get; set; }
Property Value
Type | Description |
---|---|
LoginInfo |
User
User details and settings
Declaration
public User User { get; set; }
Property Value
Type | Description |
---|---|
User |
ValidateRelationLink
Gets the Uri of the link for the relation “validate”.
Declaration
public string ValidateRelationLink { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Returns the uri of the link for the relation “validate” if it exists, or
Methods
PostToValidateRelationForString(UserValidation)
Calls the HTTP Post method on the link for the relation “validate”.
Declaration
public string PostToValidateRelationForString(UserValidation dataToSend)
Parameters
Type | Name | Description |
---|---|---|
UserValidation | dataToSend | The data to send. This data is written into the request body. |
Returns
Type | Description |
---|---|
System.String | The content of the response. |
PostToValidateRelationForStringAsync(UserValidation)
Calls the HTTP Post method on the link for the relation “validate” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<string>> PostToValidateRelationForStringAsync(UserValidation dataToSend)
Parameters
Type | Name | Description |
---|---|---|
UserValidation | 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 “validate”.
PostToValidateRelationForStringAsync(System.Threading.CancellationToken, UserValidation)
Calls the HTTP Post method on the link for the relation “validate” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<string>> PostToValidateRelationForStringAsync(System.Threading.CancellationToken cancellationToken, UserValidation dataToSend)
Parameters
Type | Name | Description |
---|---|---|
System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request. |
UserValidation | 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 “validate”.
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.