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"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-09 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`."]]],[]]