StorageItemAccessList.GetItemAsync 方法

定义

重载

GetItemAsync(String)

从最近使用的 (MRU) 列表中检索指定项 (如文件或文件夹) 。

GetItemAsync(String, AccessCacheOptions)

使用指定的选项从列表中检索指定项 (,例如文件或文件夹) 。

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)

使用指定的选项从列表中检索指定项 (,例如文件或文件夹) 。

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)
属性

另请参阅

适用于