Click or drag to resize
Calls Class
Helper methods for generated clients to make RPC calls. Most users will use this class only indirectly and will be making calls using client object generated from protocol buffer definition files.
Inheritance Hierarchy
SystemObject
  Grpc.CoreCalls

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.7.0.0
Syntax
public static class Calls

The Calls type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAsyncClientStreamingCallTRequest, TResponse
Invokes a client streaming call asynchronously. In client streaming scenario, client sends a stream of requests and server responds with a single response.
Public methodStatic memberAsyncDuplexStreamingCallTRequest, TResponse
Invokes a duplex streaming call asynchronously. In duplex streaming scenario, client sends a stream of requests and server responds with a stream of responses. The response stream is completely independent and both side can be sending messages at the same time.
Public methodStatic memberAsyncServerStreamingCallTRequest, TResponse
Invokes a server streaming call asynchronously. In server streaming scenario, client sends on request and server responds with a stream of responses.
Public methodStatic memberAsyncUnaryCallTRequest, TResponse
Invokes a simple remote call asynchronously.
Public methodStatic memberBlockingUnaryCallTRequest, TResponse
Invokes a simple remote call in a blocking fashion.
Top
See Also