public delegate Task<TResponse> ClientStreamingServerMethod<TRequest, TResponse>(IAsyncStreamReader<TRequest> requestStream, ServerCallContext context) where TRequest : class where TResponse : class
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["This documentation outlines the `ClientStreamingServerMethod` delegate, which is a server-side handler for client streaming calls in gRPC."],["The `ClientStreamingServerMethod` delegate takes an `IAsyncStreamReader` for the `requestStream` and a `ServerCallContext` as parameters."],["The `requestStream` parameter represents the stream of incoming requests from the client."],["The `ClientStreamingServerMethod` delegate returns a `Task`, and it defines the `TRequest` and `TResponse` type parameters for the message types."],["The documentation provides links to different versions of this delegate including the latest (2.66.0), 2.63.0 and 2.48.0."]]],[]]