示例#1
0
 public static string PageFetch(string sURL)
 {
     return(Utils.CStr(Comm.Download(sURL, new Comm.CommFetchOptions()
     {
         WantCookies = true
     })));
 }
示例#2
0
 public static string PageFetch(string sURL, Comm.CommFetchOptions options)
 {
     options.WantCookies = true;
     return(Utils.CStr(Comm.Download(sURL, options)));
 }