예제 #1
0
        public IActionResult GetServiceIdentifiers()
        {
            var services = _healthCheckState.GetServiceIdentifiers();

            return(Ok(new
            {
                Services = services.Select(x => x.Identifier)
            }));
        }
예제 #2
0
 /// <inheritdoc/>
 public IEnumerable <Service> GetServiceIdentifiers() => _healthCheckState.GetServiceIdentifiers();