void updstat()
{
Thread statusThread = new Thread(() =>
{
using (WebClient web = new WebClient())
{
try
{
string response = web.DownloadString("
Вы не можете просматривать ссылку пожалуйста воспользуйтесь следующими ссылками
Вход или
Регистрация
");
if (response == "ONLINE")
{
Application.Current.Dispatcher.BeginInvoke(
DispatcherPriority.Normal,
new Action(() =>
{
statusLabel.Content = "ONLINE";
statusLabel.Foreground = Brushes.Green;
}));
}
else
{
Application.Current.Dispatcher.BeginInvoke(
DispatcherPriority.Normal,
new Action(() =>
{
statusLabel.Content = "OFFLINE";
statusLabel.Foreground = Brushes.Firebrick;
playBtn.IsEnabled = false;
}));
}
}