Class WordSearchResult
Define a a set of words and locations where they are found in a section
Inheritance
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class WordSearchResult : IRelationsWithProxy
Properties
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
PageHits
Contains a set pages where of words are found
Declaration
public List<WordSearchResultPageHit> PageHits { get; set; }
Property Value
Type | Description |
---|---|
List<WordSearchResultPageHit> |
Search
Contains the search query leading to this result.
Declaration
public string Search { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
GetWordSearchResultFromNextRelation()
Calls the HTTP Get method on the link for the relation “next”.
Declaration
public WordSearchResult GetWordSearchResultFromNextRelation()
Returns
Type | Description |
---|---|
WordSearchResult | The content of the response. |
GetWordSearchResultFromNextRelationAsync()
Calls the HTTP Get method on the link for the relation “next” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<WordSearchResult>> GetWordSearchResultFromNextRelationAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<WordSearchResult>> | A task which runs the request. |
Remarks
This method follows the link for the relation “next”.
GetWordSearchResultFromNextRelationAsync(System.Threading.CancellationToken)
Calls the HTTP Get method on the link for the relation “next” asynchronously.
Declaration
public System.Threading.Tasks.Task<DeserializedHttpResponse<WordSearchResult>> GetWordSearchResultFromNextRelationAsync(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<WordSearchResult>> | 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.