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
パーサーの動作をカスタマイズするための設定。
戻り値
操作を開始するために使用する必要がある オブジェクト。
- 属性