Table of Contents

Class SurveysWaveStartDateClient

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

Constructors

SurveysWaveStartDateClient(string, HttpClient)

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

Method for retrieving current Start Date

public virtual Task<WaveStartDateModel> GetAsync(string waveId, CancellationToken cancellationToken = default)

Parameters

waveId string
cancellationToken CancellationToken

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

Returns

Task<WaveStartDateModel>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

PutAsync(string, WaveStartDateModel, CancellationToken)

Method for saving the Start Date

public virtual Task PutAsync(string waveId, WaveStartDateModel waveStartDateModel, CancellationToken cancellationToken = default)

Parameters

waveId string
waveStartDateModel WaveStartDateModel
cancellationToken CancellationToken

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

Returns

Task

Successful

Exceptions

NfieldSdkException

A server side error occurred.

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

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

Type Parameters

T