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"]],[["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-05-30 UTC."],[[["`UnaryServerMethod` is a server-side handler delegate for unary calls within the gRPC framework."],["It takes a request of type `TRequest` and a `ServerCallContext` as input."],["It returns a `Task` of type `TResponse`, which represents the asynchronous response to the request."],["This delegate is defined within the `Grpc.Core` namespace and is part of the `Grpc.Core.Api.dll` assembly."],["The `TRequest` and `TResponse` parameters specify the types of the request and response messages, respectively, and both must be class types."]]],[]]