public string GetName() { try { return(monService.GetServerName()); } catch (Exception ex) { return(""); } }
/// <summary> /// Проверка соединения /// </summary> public bool TestConnection() { bool res = _monService.TestConnection(); if (res) { //Получаем имя сервера при успешном соединении _serverName = _monService.GetServerName(); } return(res); }