public virtual AsyncServerStreamingCall<TResponse> GrpcCall { get; }
The underlying gRPC duplex streaming call.
Property Value
Type
Description
AsyncServerStreamingCall<>
Methods
GetResponseStream()
public virtual AsyncResponseStream<TResponse> GetResponseStream()
Async stream to read streaming responses, exposed as an async sequence.
The default implementation will use GrpcCall to extract a response
stream, and adapt it to AsyncResponseStream<TResponse>.
If this method is called more than once, all the returned enumerators will be enumerating over the
same underlying response stream, which may cause confusion. Additionally, the sequence returned by
this method can only be iterated over a single time. Attempting to iterate more than once will cause
an InvalidOperationException.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["This document describes the `ServerStreamingBase\u003cTResponse\u003e` class, which serves as a base for server streaming RPC methods within the Google.Api.Gax.Grpc namespace."],["The `ServerStreamingBase\u003cTResponse\u003e` class inherits from the `object` class and provides core functionalities for handling server streaming operations."],["The class offers a `GrpcCall` property of type `AsyncServerStreamingCall\u003cTResponse\u003e` representing the underlying gRPC server streaming call."],["The `GetResponseStream()` method provides an async stream to read streaming responses, adapting the gRPC response stream to `AsyncResponseStream\u003cTResponse\u003e`, but it's important to note that it can only be iterated once."],["The available versions listed include 4.10.0 (latest), 4.8.0, 4.4.0, 4.3.1, 4.2.0, 4.0.0, and 3.2.0."]]],[]]