ArcGISHealthStatus.Web.Controllers.ServicesController.GetServices C# (CSharp) Method

GetServices() public method

public GetServices ( ) : List
return List
        public List<GroupStatus> GetServices()
        {
            var healthCheck = new HealthCheck.HealthChecker();
            var groupStatuses = healthCheck.CheckSystem();

            return groupStatuses;
        }
ServicesController