Table of Contents

Class SurveysSearchClient

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll
public class SurveysSearchClient
Inheritance
SurveysSearchClient
Inherited Members

Constructors

SurveysSearchClient(string, HttpClient)

public SurveysSearchClient(string baseUrl, HttpClient httpClient)

Parameters

baseUrl string
httpClient HttpClient

Properties

BaseUrl

public string BaseUrl { get; set; }

Property Value

string

JsonSerializerSettings

protected JsonSerializerSettings JsonSerializerSettings { get; }

Property Value

JsonSerializerSettings

ReadResponseAsString

public bool ReadResponseAsString { get; set; }

Property Value

bool

Methods

GetAsync(string, CancellationToken)

Search respondent across surveys

public virtual Task<ICollection<SurveyBaseModel>> GetAsync(string value = null, CancellationToken cancellationToken = default)

Parameters

value string

Search value

cancellationToken CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Returns

Task<ICollection<SurveyBaseModel>>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

ReadObjectResponseAsync<T>(HttpResponseMessage, IReadOnlyDictionary<string, IEnumerable<string>>, CancellationToken)

protected virtual Task<SurveysSearchClient.ObjectResponseResult<T>> ReadObjectResponseAsync<T>(HttpResponseMessage response, IReadOnlyDictionary<string, IEnumerable<string>> headers, CancellationToken cancellationToken)

Parameters

response HttpResponseMessage
headers IReadOnlyDictionary<string, IEnumerable<string>>
cancellationToken CancellationToken

Returns

Task<SurveysSearchClient.ObjectResponseResult<T>>

Type Parameters

T