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."],[[["`UnaryServerMethod` is a server-side handler for unary calls within the `Grpc.Core` namespace."],["It's a delegate method that accepts a request of type `TRequest` and a `ServerCallContext`, and returns a `Task` of type `TResponse`."],["The method has type parameters `TRequest` and `TResponse`, which represent the request and response message types, respectively."],["The `request` and `context` are the parameters passed to the `UnaryServerMethod` for handling an individual request."],["The latest version of the Grpc.core is `2.66.0` and is also available for versions `2.63.0` and `2.48.0`."]]],[]]