StorageItemMostRecentlyUsedList.GetItemAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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)
- 属性