CallInvocationDetailsTRequest, TResponse Constructor (Channel, String, String, MarshallerTRequest, MarshallerTResponse, CallOptions) |
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntaxpublic CallInvocationDetails(
Channel channel,
string method,
string host,
Marshaller<TRequest> requestMarshaller,
Marshaller<TResponse> responseMarshaller,
CallOptions options
)
Public Sub New (
channel As Channel,
method As String,
host As String,
requestMarshaller As Marshaller(Of TRequest),
responseMarshaller As Marshaller(Of TResponse),
options As CallOptions
)
public:
CallInvocationDetails(
Channel^ channel,
String^ method,
String^ host,
Marshaller<TRequest> requestMarshaller,
Marshaller<TResponse> responseMarshaller,
CallOptions options
)
new :
channel : Channel *
method : string *
host : string *
requestMarshaller : Marshaller<'TRequest> *
responseMarshaller : Marshaller<'TResponse> *
options : CallOptions -> CallInvocationDetails
Parameters
- channel
- Type: Grpc.CoreChannel
Channel to use for this call. - method
- Type: SystemString
Qualified method name. - host
- Type: SystemString
Host that contains the method. - requestMarshaller
- Type: Grpc.CoreMarshallerTRequest
Request marshaller. - responseMarshaller
- Type: Grpc.CoreMarshallerTResponse
Response marshaller. - options
- Type: Grpc.CoreCallOptions
Call options.
See Also