共用方式為


StorageItemMostRecentlyUsedList.GetItemAsync 方法

定義

多載

GetItemAsync(String)

從最近使用的 (MRU) 清單中擷取指定的專案 (,例如檔案或資料夾) 。

GetItemAsync(String, AccessCacheOptions)

使用指定的選項,從最近使用 (MRU) 清單中擷取指定的專案 (,例如檔案或資料夾) 。

GetItemAsync(String)

從最近使用的 (MRU) 清單中擷取指定的專案 (,例如檔案或資料夾) 。

public:
 virtual IAsyncOperation<IStorageItem ^> ^ GetItemAsync(Platform::String ^ token) = GetItemAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemAsync")]
IAsyncOperation<IStorageItem> GetItemAsync(winrt::hstring const& token);
[Windows.Foundation.Metadata.Overload("GetItemAsync")]
public IAsyncOperation<IStorageItem> GetItemAsync(string token);
function getItemAsync(token)
Public Function GetItemAsync (token As String) As IAsyncOperation(Of IStorageItem)

參數

token
String

Platform::String

winrt::hstring

要擷取之專案的權杖。

傳回

當此方法順利完成時,它會傳回與指定權杖相關聯的專案 (類型IStorageItem) 。

實作

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

另請參閱

適用於

GetItemAsync(String, AccessCacheOptions)

使用指定的選項,從最近使用 (MRU) 清單中擷取指定的專案 (,例如檔案或資料夾) 。

public:
 virtual IAsyncOperation<IStorageItem ^> ^ GetItemAsync(Platform::String ^ token, AccessCacheOptions options) = GetItemAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemWithOptionsAsync")]
IAsyncOperation<IStorageItem> GetItemAsync(winrt::hstring const& token, AccessCacheOptions const& options);
[Windows.Foundation.Metadata.Overload("GetItemWithOptionsAsync")]
public IAsyncOperation<IStorageItem> GetItemAsync(string token, AccessCacheOptions options);
function getItemAsync(token, options)
Public Function GetItemAsync (token As String, options As AccessCacheOptions) As IAsyncOperation(Of IStorageItem)

參數

token
String

Platform::String

winrt::hstring

要擷取之專案的權杖。

options
AccessCacheOptions

列舉值,描述應用程式存取專案時要使用的行為。

傳回

當此方法順利完成時,它會傳回與指定權杖相關聯的專案 (類型IStorageItem) 。

實作

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

另請參閱

適用於