Click or drag to resize
CallsAsyncDuplexStreamingCallTRequest, TResponse Method
Invokes a duplex streaming call asynchronously. In duplex streaming scenario, client sends a stream of requests and server responds with a stream of responses. The response stream is completely independent and both side can be sending messages at the same time.

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

Parameters

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

Type Parameters

TRequest
Type of request messages.
TResponse
Type of reponse messages.

Return Value

Type: AsyncDuplexStreamingCallTRequest, TResponse
A call object providing access to the asynchronous request and response streams.
See Also