Click or drag to resize
CallsAsyncServerStreamingCallTRequest, TResponse Method
Invokes a server streaming call asynchronously. In server streaming scenario, client sends on request and server responds with a stream of responses.

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

Parameters

call
Type: Grpc.CoreCallInvocationDetailsTRequest, TResponse
The call defintion.
req
Type: TRequest
Request message.

Type Parameters

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

Return Value

Type: AsyncServerStreamingCallTResponse
A call object providing access to the asynchronous response stream.
See Also