Table of Contents

Class DomainDefaultTextsClient

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

Constructors

DomainDefaultTextsClient(string, HttpClient)

public DomainDefaultTextsClient(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

GetAllAsync(CancellationToken)

Gets all default texts for the domain.

public virtual Task<ICollection<SurveyTranslationModel>> GetAllAsync(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

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

Returns

Task<ICollection<SurveyTranslationModel>>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

GetAsync(string, CancellationToken)

Gets the specified default text for the domain.

public virtual Task<SurveyTranslationModel> GetAsync(string translationKey, CancellationToken cancellationToken = default)

Parameters

translationKey string

The id of the text

cancellationToken CancellationToken

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

Returns

Task<SurveyTranslationModel>

Successful

Exceptions

NfieldSdkException

A server side error occurred.

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

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

Type Parameters

T