private async void ApplyProxyConf()
        {
            EnableControl = false;
            var progressIndicator = new Progress <ProgressReport>(ReportProgress);
            await _proxyConfService.ApplyProxyConfAsync(ProxyConfigurationItem, progressIndicator);

            await _dialogMessageService.ShowAsync("Proxy Configuration", "Proxy Configuration Applied");

            ReportProgress(new ProgressReport
            {
                ProgressMessage = "Ready",
                ProgressValue   = 0
            });
            UpdatedConfiguration(true);
            EnableControl = true;
        }