Show / Hide Table of Contents

Class ServerStreamingBase<TResponse>

Base class for server streaming RPC methods.

Inheritance
System.Object
ServerStreamingBase<TResponse>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Api.Gax.Grpc
Assembly: Google.Api.Gax.Grpc.dll
Syntax
public class ServerStreamingBase<TResponse>
Type Parameters
Name Description
TResponse

RPC streaming response type

Properties

GrpcCall

The underlying gRPC duplex streaming call.

Declaration
public virtual AsyncServerStreamingCall<TResponse> GrpcCall { get; }
Property Value
Type Description
AsyncServerStreamingCall<TResponse>

ResponseStream

Async stream to read streaming responses.

Declaration
public virtual IAsyncEnumerator<TResponse> ResponseStream { get; }
Property Value
Type Description
System.Collections.Generic.IAsyncEnumerator<TResponse>
Back to top