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 document outlines the `DuplexStreamingServerMethod` delegate, which is a server-side handler for bidirectional streaming calls within the Grpc.Core namespace."],["The `DuplexStreamingServerMethod` takes three parameters: `requestStream` (an `IAsyncStreamReader`), `responseStream` (an `IServerStreamWriter`), and `context` (a `ServerCallContext`), facilitating the flow of requests and responses."],["The method uses generic types `TRequest` and `TResponse` to define the message types for the request and response, respectively."],["The `DuplexStreamingServerMethod` delegate returns a `Task`, indicating an asynchronous operation."],["This document covers version 2.66.0, 2.63.0 and 2.48.0 of the `DuplexStreamingServerMethod`."]]],[]]