Esempio n. 1
0
 public RemoteFileProvider(string url)
 {
     this.url   = url;
     lazyResult = new Lazy <RemoteFile>(() => HttpUtility.AsyncDownload(url).Result);
 }