Table of Contents

Class SurveysCountsClient

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

Constructors

SurveysCountsClient(string, HttpClient)

public SurveysCountsClient(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)

Returns the counts for the specified survey. For all surveys it will return the topline counts.
For surveys with Quota, it will also include detailed counts per quota level.

public virtual Task<SurveyCountsModel> GetAsync(string surveyId, CancellationToken cancellationToken = default)

Parameters

surveyId string

The survey for which the counts are requested

cancellationToken CancellationToken

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

Returns

Task<SurveyCountsModel>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

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

protected virtual Task<SurveysCountsClient.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<SurveysCountsClient.ObjectResponseResult<T>>

Type Parameters

T