Table of Contents

Method PostAsync

Namespace
Innova.Rest.Abstractions
Assembly
Innova.Rest.Abstractions.dll

PostAsync(string, CancellationToken)

Task PostAsync(string path, CancellationToken cancellationToken = default)

Parameters

path string
cancellationToken CancellationToken

Returns

Task

PostAsync<PostType, GetType>(string, PostType, CancellationToken)

Task<GetType> PostAsync<PostType, GetType>(string path, PostType itemToPost, CancellationToken cancellationToken = default)

Parameters

path string
itemToPost PostType
cancellationToken CancellationToken

Returns

Task<GetType>

Type Parameters

PostType
GetType

PostAsync<PostType>(string, PostType, CancellationToken)

Task PostAsync<PostType>(string path, PostType itemToPost, CancellationToken cancellationToken = default)

Parameters

path string
itemToPost PostType
cancellationToken CancellationToken

Returns

Task

Type Parameters

PostType