示例#1
0
        public void HealthCheck()
        {
            HealthService ws = new HealthService();

            ws.Url = ConfigurationManager.AppSettings["HealthCheckWebService"];
            ws.CheckHealthCompleted += ws_CheckHealthCompleted;
            ws.CheckHealthAsync();
        }