public delegate Task DuplexStreamingServerMethod<TRequest, TResponse>(IAsyncStreamReader<TRequest> requestStream, 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 page documents the `DuplexStreamingServerMethod` delegate, which is a server-side handler for bidirectional streaming calls in gRPC."],["It is defined as `public delegate Task DuplexStreamingServerMethod\u003cTRequest, TResponse\u003e(IAsyncStreamReader\u003cTRequest\u003e requestStream, IServerStreamWriter\u003cTResponse\u003e responseStream, ServerCallContext context) where TRequest : class where TResponse : class`."],["The method's parameters include `requestStream` (an `IAsyncStreamReader`), `responseStream` (an `IServerStreamWriter`), and `context` (a `ServerCallContext`)."],["The method returns a `Task`, indicating an asynchronous operation."],["`TRequest` and `TResponse` are type parameters representing the request and response message types respectively."]]],[]]