Click or drag to resize
CallsAsyncClientStreamingCallTRequest, TResponse Method
Invokes a client streaming call asynchronously. In client streaming scenario, client sends a stream of requests and server responds with a single response.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntax
public static AsyncClientStreamingCall<TRequest, TResponse> AsyncClientStreamingCall<TRequest, TResponse>(
	CallInvocationDetails<TRequest, TResponse> call
)
where TRequest : class
where TResponse : class

Parameters

call
Type: Grpc.CoreCallInvocationDetailsTRequest, TResponse
The call defintion.

Type Parameters

TRequest
Type of request messages.
TResponse
The of response message.

Return Value

Type: AsyncClientStreamingCallTRequest, TResponse
An awaitable call object providing access to the response.
See Also