Class Field
Inheritance
System.Object
Field
Assembly: DocuWare.Platform.ServerClient.dll
public class Field : BaseField, IRelationsWithProxy
Properties
Declaration
public string Description { get; set; }
Property Value
Type |
Description |
System.String |
|
Declaration
public FieldEntryMask FieldMask { get; set; }
Property Value
Declaration
public string FilterGuid { get; set; }
Property Value
Type |
Description |
System.String |
|
Declaration
public string Id { get; set; }
Property Value
Type |
Description |
System.String |
|
Declaration
public bool IsMandatory { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public bool IsMultiselect { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public bool IsReadOnly { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public bool IsSelectListOnly { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public Link[] Links { get; set; }
Property Value
Declaration
public List<BpwSelectListItem> MultiValue { get; set; }
Property Value
Declaration
public string SelectListGuid { get; set; }
Property Value
Type |
Description |
System.String |
|
Gets the Uri of the link for the relation “selectList”.
Declaration
public string SelectListRelationLink { get; }
Property Value
Type |
Description |
System.String |
|
Methods
PostToSelectListRelationForBpwSelectList(SelectListExpression)
Calls the HTTP Post method on the link for the relation “selectList”.
Declaration
public BpwSelectList PostToSelectListRelationForBpwSelectList(SelectListExpression dataToSend)
Parameters
Type |
Name |
Description |
SelectListExpression |
dataToSend |
The data to send. This data is written into the request body.
|
Returns
PostToSelectListRelationForBpwSelectListAsync(SelectListExpression)
Calls the HTTP Post method on the link for the relation “selectList” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<BpwSelectList>> PostToSelectListRelationForBpwSelectListAsync(SelectListExpression dataToSend)
Parameters
Type |
Name |
Description |
SelectListExpression |
dataToSend |
The data to send. This data is written into the request body.
|
Returns
PostToSelectListRelationForBpwSelectListAsync(System.Threading.CancellationToken, SelectListExpression)
Calls the HTTP Post method on the link for the relation “selectList” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<BpwSelectList>> PostToSelectListRelationForBpwSelectListAsync(System.Threading.CancellationToken cancellationToken, SelectListExpression dataToSend)
Parameters
Type |
Name |
Description |
System.Threading.CancellationToken |
cancellationToken |
The cancellation token to cancel the request.
|
SelectListExpression |
dataToSend |
The data to send. This data is written into the request body.
|
Returns
Sets the HTTP communication proxy which is used in further HTTP communication.
Declaration
public override void SetProxy(HttpClientProxy proxy)
Parameters
Type |
Name |
Description |
HttpClientProxy |
proxy |
The instance which is used in further HTTP communication.
|
Overrides
Implements