Class DocumentWordSearchResult
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class DocumentWordSearchResult : IRelationsWithProxy
Properties
FoundInAnnotations
True if word was found in the annotations.
Declaration
public bool FoundInAnnotations { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Links
Declaration
public Link[] Links { get; set; }
Property Value
Type | Description |
---|---|
Link[] |
NextRelationLink
Gets the Uri of the link for the relation “next”.
Declaration
public string NextRelationLink { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Returns the uri of the link for the relation “next” if it exists, or
Search
Contains the search query leading to this result.
Declaration
public string Search { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SectionHits
Declaration
public List<DocumentWordSearchResultSectionHits> SectionHits { get; set; }
Property Value
Type | Description |
---|---|
List<DocumentWordSearchResultSectionHits> |
Methods
GetDocumentWordSearchResultFromNextRelation()
Calls the HTTP Get method on the link for the relation “next”.
Declaration
public DocumentWordSearchResult GetDocumentWordSearchResultFromNextRelation()
Returns
Type | Description |
---|---|
DocumentWordSearchResult | The content of the response. |
GetDocumentWordSearchResultFromNextRelationAsync()
Calls the HTTP Get method on the link for the relation “next” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<DocumentWordSearchResult>> GetDocumentWordSearchResultFromNextRelationAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<DocumentWordSearchResult>> | A task which runs the request. |
Remarks
This method follows the link for the relation “next”.
GetDocumentWordSearchResultFromNextRelationAsync(System.Threading.CancellationToken)
Calls the HTTP Get method on the link for the relation “next” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<DocumentWordSearchResult>> GetDocumentWordSearchResultFromNextRelationAsync(System.Threading.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<DocumentWordSearchResult>> | A task which runs the request. |
Remarks
This method follows the link for the relation “next”.
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.