Class SurveysVarfileClient
public class SurveysVarfileClient
- Inheritance
-
SurveysVarfileClient
- Inherited Members
Constructors
SurveysVarfileClient(string, HttpClient)
public SurveysVarfileClient(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)
This method retrieves the varfile of a specific survey.
public virtual Task<SurveyVarFileModel> GetAsync(string surveyId, CancellationToken cancellationToken = default)
Parameters
surveyIdstringThe id of the survey
cancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
- Task<SurveyVarFileModel>
Successful
Exceptions
- NfieldSdkException
A server side error occurred.
GetByEtagAsync(string, string, CancellationToken)
This method retrieves the specific version of the varfile for the specified survey.
public virtual Task<SurveyVarFileModel> GetByEtagAsync(string surveyId, string eTag, CancellationToken cancellationToken = default)
Parameters
surveyIdstringThe id of the survey
eTagstringThe version of the varfile to retrieve
cancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
- Task<SurveyVarFileModel>
Successful
Exceptions
- NfieldSdkException
A server side error occurred.
ReadObjectResponseAsync<T>(HttpResponseMessage, IReadOnlyDictionary<string, IEnumerable<string>>, CancellationToken)
protected virtual Task<SurveysVarfileClient.ObjectResponseResult<T>> ReadObjectResponseAsync<T>(HttpResponseMessage response, IReadOnlyDictionary<string, IEnumerable<string>> headers, CancellationToken cancellationToken)
Parameters
responseHttpResponseMessageheadersIReadOnlyDictionary<string, IEnumerable<string>>cancellationTokenCancellationToken
Returns
Type Parameters
T