次の方法で共有


IStorageItemAccessList.GetFileAsync メソッド

定義

オーバーロード

GetFileAsync(String)

指定した StorageFile を 一覧から取得します。

GetFileAsync(String, AccessCacheOptions)

指定したオプションを使用して、指定した StorageFile を一覧から取得します。

GetFileAsync(String)

指定した StorageFile を 一覧から取得します。

public:
 IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token);
/// [Windows.Foundation.Metadata.Overload("GetFileAsync")]
IAsyncOperation<StorageFile> GetFileAsync(winrt::hstring const& token);
[Windows.Foundation.Metadata.Overload("GetFileAsync")]
public IAsyncOperation<StorageFile> GetFileAsync(string token);
function getFileAsync(token)
Public Function GetFileAsync (token As String) As IAsyncOperation(Of StorageFile)

パラメーター

token
String

Platform::String

winrt::hstring

取得する StorageFile のトークン。

戻り値

このメソッドが正常に完了すると、指定したトークンに関連付けられている StorageFile が返されます。

属性

こちらもご覧ください

適用対象

GetFileAsync(String, AccessCacheOptions)

指定したオプションを使用して、指定した StorageFile を一覧から取得します。

public:
 IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token, AccessCacheOptions options);
/// [Windows.Foundation.Metadata.Overload("GetFileWithOptionsAsync")]
IAsyncOperation<StorageFile> GetFileAsync(winrt::hstring const& token, AccessCacheOptions const& options);
[Windows.Foundation.Metadata.Overload("GetFileWithOptionsAsync")]
public IAsyncOperation<StorageFile> GetFileAsync(string token, AccessCacheOptions options);
function getFileAsync(token, options)
Public Function GetFileAsync (token As String, options As AccessCacheOptions) As IAsyncOperation(Of StorageFile)

パラメーター

token
String

Platform::String

winrt::hstring

取得する StorageFile のトークン。

options
AccessCacheOptions

アプリが項目にアクセスするときに使用する動作を記述する列挙値。

戻り値

このメソッドが正常に完了すると、指定したトークンに関連付けられている StorageFile が返されます。

属性

こちらもご覧ください

適用対象