public delegate Task<TResponse> UnaryServerMethod<TRequest, TResponse>(TRequest request, 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 `UnaryServerMethod` delegate for handling unary calls on the server-side within the gRPC framework, specifically version 2.48.0."],["The `UnaryServerMethod` delegate requires two parameters: a `request` of type `TRequest` and a `context` of type `ServerCallContext`."],["The delegate's return type is a `Task\u003cTResponse\u003e`, indicating it handles asynchronous operations and provides a response of type `TResponse`."],["The `TRequest` and `TResponse` type parameters represent the request and response message types, respectively, and are both expected to be class types."],["The documented code can be found within the Grpc.Core namespace, and is a part of the Grpc.Core.Api.dll assembly."]]],[]]