共用方式為


StorageItemMostRecentlyUsedList.GetFileAsync 方法

定義

多載

GetFileAsync(String)

從最近使用的 (MRU) 清單中擷取指定的 storageFile

GetFileAsync(String, AccessCacheOptions)

使用指定的選項,從最近使用的 (MRU) 清單中擷取指定的 storageFile

GetFileAsync(String)

從最近使用的 (MRU) 清單中擷取指定的 storageFile

public:
 virtual IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token) = GetFileAsync;
/// [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

實作

M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(System.String) M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(Platform::String) M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(winrt::hstring)
屬性

另請參閱

適用於

GetFileAsync(String, AccessCacheOptions)

使用指定的選項,從最近使用的 (MRU) 清單中擷取指定的 storageFile

public:
 virtual IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token, AccessCacheOptions options) = GetFileAsync;
/// [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

實作

M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(System.String,Windows.Storage.AccessCache.AccessCacheOptions) M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(Platform::String,Windows.Storage.AccessCache.AccessCacheOptions) M:Windows.Storage.AccessCache.IStorageItemAccessList.GetFileAsync(winrt::hstring,Windows.Storage.AccessCache.AccessCacheOptions)
屬性

另請參閱

適用於