[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]public class BindServiceMethodAttribute:Attribute
Specifies the location of the service bind method for a gRPC service.
The bind method is typically generated code and is used to register a service's
methods with the server on startup.
The bind method signature takes a ServiceBinderBase and an optional
instance of the service base class, e.g. static void BindService(ServiceBinderBase, GreeterService).
[[["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-02 UTC."],[[["The `BindServiceMethodAttribute` class specifies the location of the service bind method for a gRPC service."],["The bind method, typically generated, registers a service's methods with the server upon startup."],["The attribute's constructor takes the type and name of the bind method as parameters."],["This class inherits from the `Attribute` class and includes inherited members like `Equals`, `GetCustomAttribute`, and `GetCustomAttributes`."],["The `BindServiceMethodAttribute` class includes properties `BindMethodName` and `BindType` which store the name and type of the bind method, respectively."]]],[]]