Class SurveysDialModeClient
public class SurveysDialModeClient
- Inheritance
-
SurveysDialModeClient
- Inherited Members
Constructors
SurveysDialModeClient(string, HttpClient)
public SurveysDialModeClient(string baseUrl, HttpClient httpClient)
Parameters
baseUrlstringhttpClientHttpClient
Properties
BaseUrl
public string BaseUrl { get; set; }
Property Value
JsonSerializerSettings
protected JsonSerializerSettings JsonSerializerSettings { get; }
Property Value
- JsonSerializerSettings
ReadResponseAsString
public bool ReadResponseAsString { get; set; }
Property Value
Methods
GetAsync(string, CancellationToken)
Get the dial mode for the survey
public virtual Task<DialModeModel> GetAsync(string surveyId, CancellationToken cancellationToken = default)
Parameters
surveyIdstringid of the survey
cancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
- Task<DialModeModel>
Successful
Exceptions
- NfieldSdkException
A server side error occurred.
PatchAsync(string, DialModeModel, CancellationToken)
Update the dial mode for the survey
public virtual Task PatchAsync(string surveyId, DialModeModel dialModeRequestModel, CancellationToken cancellationToken = default)
Parameters
surveyIdstringid of the survey
dialModeRequestModelDialModeModelthe new dial mode
cancellationTokenCancellationTokenA 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<SurveysDialModeClient.ObjectResponseResult<T>> ReadObjectResponseAsync<T>(HttpResponseMessage response, IReadOnlyDictionary<string, IEnumerable<string>> headers, CancellationToken cancellationToken)
Parameters
responseHttpResponseMessageheadersIReadOnlyDictionary<string, IEnumerable<string>>cancellationTokenCancellationToken
Returns
Type Parameters
T