Ejemplo n.º 1
0
 public void PostFilesTest()
 {
     using (var http = new HttpHelper("http://file.dayeasy.dev/uploader?type=2", "post", Encoding.UTF8, ""))
     {
         http.AddFiles(new List<string> { "d:\\big.mp4" });
         var html = http.GetHtml();
         Console.Write(html);
     }
 }