Click or drag to resize

ServerReflectionServerReflectionBaseServerReflectionInfo Method

The reflection service is structured as a bidirectional stream, ensuring all related requests go to a single server.

Namespace:  Grpc.Reflection.V1Alpha
Assembly:  Grpc.Reflection (in Grpc.Reflection.dll) Version: 1.2.0-dev
Syntax
public virtual Task ServerReflectionInfo(
	IAsyncStreamReader<ServerReflectionRequest> requestStream,
	IServerStreamWriter<ServerReflectionResponse> responseStream,
	ServerCallContext context
)

Parameters

requestStream
Type: Grpc.CoreIAsyncStreamReaderServerReflectionRequest
Used for reading requests from the client.
responseStream
Type: Grpc.CoreIServerStreamWriterServerReflectionResponse
Used for sending responses back to the client.
context
Type: Grpc.CoreServerCallContext
The context of the server-side call handler being invoked.

Return Value

Type: Task
A task indicating completion of the handler.
See Also