public delegate Task ServerStreamingServerMethod<TRequest, TResponse>(TRequest request, IServerStreamWriter<TResponse> responseStream, 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 document outlines the `ServerStreamingServerMethod` delegate, a server-side handler for server streaming calls in gRPC."],["The delegate takes a request (`TRequest`), a response stream writer (`IServerStreamWriter\u003cTResponse\u003e`), and a server call context (`ServerCallContext`) as parameters."],["The `ServerStreamingServerMethod` delegate is defined within the `Grpc.Core` namespace and is part of the `Grpc.Core.Api.dll` assembly."],["It also defines `TRequest` as the type of message from the client and `TResponse` as the type of message to be streamed back to the client."]]],[]]