本文整理汇总了C#中System.Net.UploadFileCompletedEventHandler代理的典型用法代码示例。如果您正苦于以下问题:C# UploadFileCompletedEventHandler代理的具体用法?C# UploadFileCompletedEventHandler怎么用?C# UploadFileCompletedEventHandler使用的例子?那么恭喜您, 这里精选的代理代码示例或许可以为您提供帮助。
UploadFileCompletedEventHandler代理属于System.Net命名空间,在下文中一共展示了UploadFileCompletedEventHandler代理的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: UploadFileInBackground
// Sample call: UploadFileInBackground("http://www.contoso.com/fileUpload.aspx", "data.txt")
public static void UploadFileInBackground (string address, string fileName)
{
System.Threading.AutoResetEvent waiter = new System.Threading.AutoResetEvent (false);
WebClient client = new WebClient ();
Uri uri = new Uri(address);
string method = "POST";
// Specify that that UploadFileCallback method gets called
// when the file upload completes.
client.UploadFileCompleted += new UploadFileCompletedEventHandler (UploadFileCallback);
client.UploadFileAsync (uri, method, fileName, waiter);
// Block the main application thread. Real applications
// can perform other tasks while waiting for the upload to complete.
waiter.WaitOne ();
Console.WriteLine ("File upload is complete.");
}
示例2: UploadFileCallback
private static void UploadFileCallback (Object sender, UploadFileCompletedEventArgs e)
{
System.Threading.AutoResetEvent waiter = (System.Threading.AutoResetEvent)e.UserState;;
try
{
string reply = System.Text.Encoding.UTF8.GetString (e.Result);
Console.WriteLine (reply);
}
finally
{
// If this thread throws an exception, make sure that
// you let the main application thread resume.
waiter.Set ();
}
}