Namespace Grpc.HealthCheck
Classes
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));