WebViewManager.TryGetResponseContent 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試提供指定網路要求的回應內容。
protected bool TryGetResponseContent (string uri, bool allowFallbackOnHostPage, out int statusCode, out string statusMessage, out System.IO.Stream content, out System.Collections.Generic.IDictionary<string,string> headers);
member this.TryGetResponseContent : string * bool * int * string * Stream * IDictionary -> bool
Protected Function TryGetResponseContent (uri As String, allowFallbackOnHostPage As Boolean, ByRef statusCode As Integer, ByRef statusMessage As String, ByRef content As Stream, ByRef headers As IDictionary(Of String, String)) As Boolean
參數
- uri
- String
要求的 URI
- allowFallbackOnHostPage
- Boolean
是否要後援到主機頁面。
- statusCode
- Int32
回應的狀態碼。
- statusMessage
- String
回應狀態訊息。
- content
- Stream
回應內容
- headers
- IDictionary<String,String>
回應標頭
傳回
true
如果可以提供回應,則為 ; false
否則。