Click or drag to resize
ServerStreamingServerMethodTRequest, TResponse Delegate
Server-side handler for server streaming call.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.7.0.0
Syntax
public delegate Task ServerStreamingServerMethod<TRequest, TResponse>(
	TRequest request,
	IServerStreamWriter<TResponse> responseStream,
	ServerCallContext context
)
where TRequest : class
where TResponse : class

Parameters

request
Type: TRequest
responseStream
Type: Grpc.CoreIServerStreamWriterTResponse
context
Type: Grpc.CoreServerCallContext

Type Parameters

TRequest
Request message type for this method.
TResponse
Response message type for this method.

Return Value

Type: Task
See Also