Click or drag to resize
ClientBaseCreateCallTRequest, TResponse Method
Creates a new call to given method.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntax
protected CallInvocationDetails<TRequest, TResponse> CreateCall<TRequest, TResponse>(
	Method<TRequest, TResponse> method,
	CallOptions options
)
where TRequest : class
where TResponse : class

Parameters

method
Type: Grpc.CoreMethodTRequest, TResponse
The method to invoke.
options
Type: Grpc.CoreCallOptions
The call options.

Type Parameters

TRequest
Request message type.
TResponse
Response message type.

Return Value

Type: CallInvocationDetailsTRequest, TResponse
The call invocation details.
See Also