共用方式為


WebClient.AsyncDownloadString 擴充方法 (F#)

傳回非同步計算,這個計算在執行時會等候下載指定的 URI。

**命名空間/模組路徑:**Microsoft.FSharp.Control.WebExtensions

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
type System.Net.WebClient with
  member AsyncDownloadString : Uri -> Async<string>

// Usage:
webClient.AsyncDownloadString (address)

參數

  • address
    型別:Uri

    要擷取的 URI。

傳回值

等待 URI 傳回的非同步計算 (Async 物件)。

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0、4.0

請參閱

參考

Control.WebExtensions 模組 (F#)

WebClient