Click or drag to resize
IAsyncStreamWriterT Interface
A writable stream of messages.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntax
public interface IAsyncStreamWriter<T>

Type Parameters

T
The message type.

The IAsyncStreamWriterT type exposes the following members.

Properties
  NameDescription
Public propertyWriteOptions
Write options that will be used for the next write. If null, default options will be used. Once set, this property maintains its value across subsequent writes.
Top
Methods
  NameDescription
Public methodWriteAsync
Writes a single asynchronously. Only one write can be pending at a time.
Top
See Also