WalletItemStore.GetItemsAsync 方法

定义

重载

GetItemsAsync()

注意

ApplicationModel.Wallet 命名空间不再受支持,不久将弃用。 建议开发人员避免使用此命名空间。

返回此应用拥有的所有钱包项目的集合。

GetItemsAsync(WalletItemKind)

注意

ApplicationModel.Wallet 命名空间不再受支持,不久将弃用。 建议开发人员避免使用此命名空间。

返回此应用拥有的给定类型的钱包项的集合。

GetItemsAsync()

注意

ApplicationModel.Wallet 命名空间不再受支持,不久将弃用。 建议开发人员避免使用此命名空间。

返回此应用拥有的所有钱包项目的集合。

public:
 virtual IAsyncOperation<IVectorView<WalletItem ^> ^> ^ GetItemsAsync() = GetItemsAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<WalletItem>> GetItemsAsync();
/// [Windows.Foundation.Metadata.Overload("GetItemsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
IAsyncOperation<IVectorView<WalletItem>> GetItemsAsync();
[Windows.Foundation.Metadata.Overload("GetItemsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<WalletItem>> GetItemsAsync();
[Windows.Foundation.Metadata.Overload("GetItemsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
public IAsyncOperation<IReadOnlyList<WalletItem>> GetItemsAsync();
function getItemsAsync()
Public Function GetItemsAsync () As IAsyncOperation(Of IReadOnlyList(Of WalletItem))

返回

一个异步操作,在成功完成后,返回此应用可访问的钱包项目集合。 如果使用 异步编程,则结果类型是 WalletItem 项的只读列表/矢量。 (可以使用适用于 C++ 的 IVectorView<WalletItem> 或 JavaScript 的 API(适用于 .NET 的 IReadOnlyList 的 API))

属性

另请参阅

适用于

GetItemsAsync(WalletItemKind)

注意

ApplicationModel.Wallet 命名空间不再受支持,不久将弃用。 建议开发人员避免使用此命名空间。

返回此应用拥有的给定类型的钱包项的集合。

public:
 virtual IAsyncOperation<IVectorView<WalletItem ^> ^> ^ GetItemsAsync(WalletItemKind kind) = GetItemsAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemsWithKindAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<WalletItem>> GetItemsAsync(WalletItemKind const& kind);
/// [Windows.Foundation.Metadata.Overload("GetItemsWithKindAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
IAsyncOperation<IVectorView<WalletItem>> GetItemsAsync(WalletItemKind const& kind);
[Windows.Foundation.Metadata.Overload("GetItemsWithKindAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<WalletItem>> GetItemsAsync(WalletItemKind kind);
[Windows.Foundation.Metadata.Overload("GetItemsWithKindAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Deprecated("IWalletItemStore is deprecated and might not work on all platforms. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 917504, "Windows.Foundation.UniversalApiContract")]
public IAsyncOperation<IReadOnlyList<WalletItem>> GetItemsAsync(WalletItemKind kind);
function getItemsAsync(kind)
Public Function GetItemsAsync (kind As WalletItemKind) As IAsyncOperation(Of IReadOnlyList(Of WalletItem))

参数

kind
WalletItemKind

要检索的钱包项的类型。

返回

一个异步操作,该操作在成功完成时返回此应用可访问的指定类型的钱包项的集合。 如果使用 异步编程,则结果类型是 WalletItem 项的只读列表/矢量。 (可以使用适用于 C++ 的 IVectorView<WalletItem> 或 JavaScript 的 API(适用于 .NET 的 IReadOnlyList 的 API))

属性

适用于