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, which is used to register service methods with the server during startup."],["The bind method, typically generated code, has a signature that accepts a `ServiceBinderBase` and an optional service base class instance."],["The `BindServiceMethodAttribute` constructor initializes a new instance with the type (`bindType`) and name (`bindMethodName`) of the service bind method."],["The `BindMethodName` property retrieves the name of the service bind method, while the `BindType` property retrieves the type on which the service bind method is defined."]]],[]]