Interface IHttpPostRequestWithResponseBuilder<TResponse>
- Namespace
- Homa.Sdk.Foundation
- Assembly
- Homa.Sdk.Foundation.dll
Interface for building an HTTP POST request for which response will be parsed.
[Obsolete("Use IHttpRequestBuilder<TResponse> instead.")]
public interface IHttpPostRequestWithResponseBuilder<TResponse> : IHttpPostRequestBuilder<TResponse>, IHttpRequestBuilder<TResponse>, IHttpRequestBuilder<IHttpRequestBuilder<TResponse>, TResponse>
Type Parameters
TResponseType of the expected response
- Inherited Members
Methods
SetContentDeserializationSettings(JsonSerializerSettings)
Sets the deserialization settings used when parsing the response content.
IHttpPostRequestWithResponseBuilder<TResponse> SetContentDeserializationSettings(JsonSerializerSettings serializerSettings)
Parameters
serializerSettingsJsonSerializerSettingsSettings used for deserialization.
Returns
- IHttpPostRequestWithResponseBuilder<TResponse>