Class FunctionExpressionQuery
Query cabinet documents by function expression
Inheritance
System.Object
FunctionExpressionQuery
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class FunctionExpressionQuery : object
Constructors
FunctionExpressionQuery()
Creates a new instance of this class
Declaration
public FunctionExpressionQuery()
Properties
Count
Number of result documents to be retrieved in one block
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Expression
The function expression used as filter for the result.
Declaration
public FunctionExpression Expression { get; set; }
Property Value
Type | Description |
---|---|
FunctionExpression |
ResultFields
Define index fields to be retrieved in the result. (If empty - all fields are returned)
Declaration
public List<string> ResultFields { get; set; }
Property Value
Type | Description |
---|---|
List<System.String> |
Remarks
Depending on the server's choice, there might be more fields included, like some system fields. If this field is null, then all fields are returned. I it's empty, then only system fields will be returned.
SortOrder
Sets the fields that the result will be sorted by.
Declaration
public List<SortedField> SortOrder { get; set; }
Property Value
Type | Description |
---|---|
List<SortedField> |
Start
Start index of result document
Declaration
public int Start { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |