Table of Contents

Class SurveysWaveStopDateClient

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

Constructors

SurveysWaveStopDateClient(string, HttpClient)

public SurveysWaveStopDateClient(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 Stop Date

public virtual Task<WaveStopDateModel> 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<WaveStopDateModel>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

PutAsync(string, WaveStopDateModel, CancellationToken)

Method for saving the Stop Date

public virtual Task PutAsync(string waveId, WaveStopDateModel waveStopDateModel, CancellationToken cancellationToken = default)

Parameters

waveId string
waveStopDateModel WaveStopDateModel
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<SurveysWaveStopDateClient.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<SurveysWaveStopDateClient.ObjectResponseResult<T>>

Type Parameters

T