Grpc.HealthCheck Namespace |
[Missing <summary> documentation for "N:Grpc.HealthCheck"]
| Class | Description | |
|---|---|---|
| HealthServiceImpl |
Implementation of a simple Health service. Useful for health checking.
Registering service with a server:
var serviceImpl = new HealthServiceImpl(); server = new Server(); server.AddServiceDefinition(Grpc.Health.V1.Health.BindService(serviceImpl)); |