Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>
Return type for client streaming calls.
Async stream to send streaming requests.
Asynchronous call result.
Asynchronous access to response headers.
public AsyncClientStreamingCall(IClientStreamWriter<TRequest> requestStream, Task<TResponse> responseAsync, Task<Metadata> responseHeadersAsync, Func<Status> getStatusFunc, Func<Metadata> getTrailersFunc, Action disposeAction)
Creates a new AsyncClientStreamingCall object with the specified properties.
public AsyncClientStreamingCall(IClientStreamWriter<TRequest> requestStream, Task<TResponse> responseAsync, Func<object, Task<Metadata>> responseHeadersAsync, Func<object, Status> getStatusFunc, Func<object, Metadata> getTrailersFunc, Action<object> disposeAction, object state)
Creates a new AsyncClientStreamingCall object with the specified properties.
Configures an awaiter used to await this AsyncClientStreamingCall<T, U>.
Provides means to cleanup after the call.
If the call has already finished normally (request stream has been completed and call result has been received), doesn't do anything.
Otherwise, requests cancellation of the call which should terminate all pending async operations associated with the call.
As a result, all resources being used by the call should be released eventually.
Gets an awaiter used to await this AsyncClientStreamingCall<T, U>.
Gets the call status if the call has already finished.
Throws InvalidOperationException otherwise.
Gets the call trailing metadata if the call has already finished.
Throws InvalidOperationException otherwise.