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."],[[["`ClientStreamingServerMethod` is a server-side handler for client streaming calls in the Grpc.Core namespace."],["It utilizes an `IAsyncStreamReader\u003cTRequest\u003e` for the `requestStream` and a `ServerCallContext` for the `context` parameters."],["The method returns a `Task\u003cTResponse\u003e`, representing the asynchronous response of the streaming call."],["`TRequest` and `TResponse` are the request and response message types, respectively, for the method."],["The latest version of `ClientStreamingServerMethod` is 2.66.0."]]],[]]