Class SurveysPublishClient
public class SurveysPublishClient
- Inheritance
-
SurveysPublishClient
- Inherited Members
Constructors
SurveysPublishClient(string, HttpClient)
public SurveysPublishClient(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)
Gets the published state of the survey in the context.
public virtual Task<SurveyPackageStateModel> 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<SurveyPackageStateModel>
Successful
Exceptions
- NfieldSdkException
A server side error occurred.
PutAsync(string, SurveyPublishTypeUpgradeModel, CancellationToken)
Publishes the survey to the survey package.
public virtual Task PutAsync(string surveyId, SurveyPublishTypeUpgradeModel surveyPublishTypeUpgrade, CancellationToken cancellationToken = default)
Parameters
surveyIdstringThe id of the survey.
surveyPublishTypeUpgradeSurveyPublishTypeUpgradeModelA model that contains the interview package type
and force interviews on older packages to upgrade to this packagecancellationTokenCancellationTokenA cancellation token that can be used by other objects or threads to receive notice of cancellation.
Returns
Exceptions
- NfieldSdkException
A server side error occurred.
ReadObjectResponseAsync<T>(HttpResponseMessage, IReadOnlyDictionary<string, IEnumerable<string>>, CancellationToken)
protected virtual Task<SurveysPublishClient.ObjectResponseResult<T>> ReadObjectResponseAsync<T>(HttpResponseMessage response, IReadOnlyDictionary<string, IEnumerable<string>> headers, CancellationToken cancellationToken)
Parameters
responseHttpResponseMessageheadersIReadOnlyDictionary<string, IEnumerable<string>>cancellationTokenCancellationToken
Returns
Type Parameters
T