XmlDocument.LoadFromFileAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
LoadFromFileAsync(IStorageFile) |
以非同步方式從指定的檔案載入 XML 檔。 檔會使用預設剖析器設定進行剖析。 |
LoadFromFileAsync(IStorageFile, XmlLoadSettings) |
以非同步方式從指定的檔案載入 XML 檔。 檔會使用提供的設定進行剖析。 |
LoadFromFileAsync(IStorageFile)
以非同步方式從指定的檔案載入 XML 檔。 檔會使用預設剖析器設定進行剖析。
public:
static IAsyncOperation<XmlDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile const& file);
[Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file);
function loadFromFileAsync(file)
Public Shared Function LoadFromFileAsync (file As IStorageFile) As IAsyncOperation(Of XmlDocument)
參數
- file
- IStorageFile
要從中載入檔的檔案。
傳回
必須用來啟動作業的物件。
- 屬性
另請參閱
適用於
LoadFromFileAsync(IStorageFile, XmlLoadSettings)
以非同步方式從指定的檔案載入 XML 檔。 檔會使用提供的設定進行剖析。
public:
static IAsyncOperation<XmlDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file, XmlLoadSettings ^ loadSettings);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileWithSettingsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile const& file, XmlLoadSettings const& loadSettings);
[Windows.Foundation.Metadata.Overload("LoadFromFileWithSettingsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file, XmlLoadSettings loadSettings);
function loadFromFileAsync(file, loadSettings)
Public Shared Function LoadFromFileAsync (file As IStorageFile, loadSettings As XmlLoadSettings) As IAsyncOperation(Of XmlDocument)
參數
- file
- IStorageFile
要從中載入檔的檔案。
- loadSettings
- XmlLoadSettings
自訂剖析器行為的設定。
傳回
必須用來啟動作業的物件。
- 屬性