StoreContext.GetAssociatedStoreProductsAsync(IIterable<String>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取可从当前应用内购买的产品的 Microsoft Store 一览信息。
public:
virtual IAsyncOperation<StoreProductQueryResult ^> ^ GetAssociatedStoreProductsAsync(IIterable<Platform::String ^> ^ productKinds) = GetAssociatedStoreProductsAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<StoreProductQueryResult> GetAssociatedStoreProductsAsync(IIterable<winrt::hstring> const& productKinds);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StoreProductQueryResult> GetAssociatedStoreProductsAsync(IEnumerable<string> productKinds);
function getAssociatedStoreProductsAsync(productKinds)
Public Function GetAssociatedStoreProductsAsync (productKinds As IEnumerable(Of String)) As IAsyncOperation(Of StoreProductQueryResult)
参数
指定要获取的产品类型的字符串数组。 有关受支持的字符串值列表,请参阅 ProductKind 属性。
返回
成功完成后返回 StoreProductQueryResult 的异步操作,该操作提供对关联产品和相关错误信息的访问权限。
- 属性
注解
有关使用此方法的详细信息(包括代码示例),请参阅 获取应用和加载项的产品信息。