Class Group
Defines a DocuWare group
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class Group : IRelationsWithProxy
Properties
Active
Is group active flag.
Declaration
public bool Active { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Id
The role id.
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Links
Declaration
public Link[] Links { get; set; }
Property Value
| Type | Description |
|---|---|
| Link[] |
Name
The name of the group.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SelfRelationLink
Gets the Uri of the link for the relation “self”.
Declaration
public string SelfRelationLink { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
Returns the uri of the link for the relation “self” if it exists, or
UsersRelationLink
Gets the Uri of the link for the relation “users”.
Declaration
public string UsersRelationLink { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
Returns the uri of the link for the relation “users” if it exists, or
Methods
GetGroupFromSelfRelation()
Calls the HTTP Get method on the link for the relation “self”.
Declaration
public Group GetGroupFromSelfRelation()
Returns
| Type | Description |
|---|---|
| Group | The content of the response. |
GetGroupFromSelfRelationAsync()
Calls the HTTP Get method on the link for the relation “self” asynchronously.
Declaration
public Task<DeserializedHttpResponse<Group>> GetGroupFromSelfRelationAsync()
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<Group>> | A task which runs the request. |
Remarks
This method follows the link for the relation “self”.
GetGroupFromSelfRelationAsync(CancellationToken)
Calls the HTTP Get method on the link for the relation “self” asynchronously.
Declaration
public Task<DeserializedHttpResponse<Group>> GetGroupFromSelfRelationAsync(CancellationToken cancellationToken)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<Group>> | A task which runs the request. |
Remarks
This method follows the link for the relation “self”.
GetUsersFromUsersRelation()
Calls the HTTP Get method on the link for the relation “users”.
Declaration
public Users GetUsersFromUsersRelation()
Returns
| Type | Description |
|---|---|
| Users | The content of the response. |
GetUsersFromUsersRelationAsync()
Calls the HTTP Get method on the link for the relation “users” asynchronously.
Declaration
public Task<DeserializedHttpResponse<Users>> GetUsersFromUsersRelationAsync()
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<Users>> | A task which runs the request. |
Remarks
This method follows the link for the relation “users”.
GetUsersFromUsersRelationAsync(CancellationToken)
Calls the HTTP Get method on the link for the relation “users” asynchronously.
Declaration
public Task<DeserializedHttpResponse<Users>> GetUsersFromUsersRelationAsync(CancellationToken cancellationToken)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Threading.CancellationToken | cancellationToken | The cancellation token to cancel the request. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<DeserializedHttpResponse<Users>> | A task which runs the request. |
Remarks
This method follows the link for the relation “users”.
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.