[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"]],[["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."],[[["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."]]],[]]