Click or drag to resize

DataClientSearchAsync Method

To get started, call one of the following methods:
  • Anysense.API.Client.V1.ApiClient.Create
  • Anysense.API.Client.V1.ApiClient.CreateAsync
  • Anysense.API.Client.V1.ApiClient.CreateWithToken
  • Anysense.API.Client.V1.ApiClient.CreateWithTokenAsync
See Anysense.API.Client.Shared.BaseClient<T> for documentation on these methods.
Gets data for a given form.

Namespace: Anysense.API.Client.V1
Assembly: Anysense.API.Client (in Anysense.API.Client.dll) Version: 1.29.8-dev
Syntax
C#
public Task<GetDataResponse> SearchAsync(
	SearchRequest request
)

Parameters

request  SearchRequest
The SearchFormData request.
See Implementation Notes.

Return Value

TaskGetDataResponse
Remarks
This method should not be used for synchronizing data on clients beginning with API v1.10 and forwards. Prior two API v1.10, the search method had two methods: 1. If a RowVersion is submitted, the search method will ignore all other submitted filtering and return everything that has been added or modified since that row version. 2. If no RowVersion is submitted, the search method will be using the submitted filters (if any) If a client is synchronizing, it should keep asking for data, until there is no new/updated and or deleted data returned.
See Also