Exemple #1
0
 RemoteInstall(bool enabled, string uri, INotifyDownload notifier, string proxyAddress, string proxyUsername, string proxyPassword)
 {
     Enabled = enabled;
     ServerUri = uri;
     Client = new NotifyProgressWebClient(notifier, proxyAddress, proxyUsername, proxyPassword);
 }
Exemple #2
0
 RemoteInstall(bool enabled, string uri, INotifyDownload notifier, string proxyAddress, string proxyUsername, string proxyPassword)
 {
     Enabled   = enabled;
     ServerUri = uri;
     Client    = new NotifyProgressWebClient(notifier, proxyAddress, proxyUsername, proxyPassword);
 }
Exemple #3
0
 RemoteInstall(bool enabled, string uri, INotifyDownload notifier)
 {
     Enabled = enabled;
     ServerUri = uri;
     Client = new NotifyProgressWebClient(notifier);
 }