C# 非同步作業 async await 的用法

來源:互聯網
上載者:User

標籤:form   return   zh-cn   read   console   false   soft   length   format   

1. async與 await 成對出現 async 在方法前使用 ,方法體面面用  await .

2. 使用async 和await定義非同步方法呼叫不會建立新線程.

3.await 後面一定是一個掃行時間長的任務,要用 Task.Run(()=>{    }); 類似的代碼來執行.

4.返回寫成 Task<Type>. 後面的代碼要等 這個執行完後 再執行.

5.介面不阻塞

例子:

private async void button2_Click(object sender, EventArgs e)
{
//非同步方法呼叫
this.button2.Enabled = false;

long length = await AccessWebAsync();
this.button2.Enabled = true;
// 這裡可以做一些不依賴回複的操作
OtherWork(); // 這裡要等 AccessWebAsync 執行完後 才能執行

this.textBox1.Text += String.Format("\n 回複的位元組長度為: {0}.\r\n", length);
txbMainThreadID.Text = Thread.CurrentThread.ManagedThreadId.ToString();
}

private void OtherWork()
{
this.textBox1.Text += "\r\n等待伺服器回複中.................\n";
}

 

private async Task<long> AccessWebAsync()
{


//await Task.Run(() => { Thread.Sleep(5000); Console.WriteLine("bbb1"); Console.WriteLine("bbb2"); Console.WriteLine("bbb3"); });
MemoryStream content = new MemoryStream();
await Task.Run(() =>
{
// 對MSDN發起一個Web請求
HttpWebRequest webRequest = WebRequest.Create("http://msdn.microsoft.com/zh-cn/") as HttpWebRequest;
if (webRequest != null)
{
// 返回回複結果
using (WebResponse response = webRequest.GetResponse())
{
using (Stream responseStream = response.GetResponseStream())
{
responseStream.CopyTo(content);
}
}
}
});

txbAsynMethodID.Text = Thread.CurrentThread.ManagedThreadId.ToString();
return content.Length;
}

 

C# 非同步作業 async await 的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.