コード例 #1
0
 /// <summary>
 /// Call the Google Play Store to retrieve the store products. The `IStoreCallback` will be call with the retrieved products.
 /// </summary>
 /// <param name="products">The catalog of products to retrieve the store information from</param>
 public override void RetrieveProducts(ReadOnlyCollection <ProductDefinition> products)
 {
     m_RetrieveProductsService.RetrieveProducts(products);
 }
コード例 #2
0
        /// <summary>
        /// Call the Google Play Store to retrieve the store products. The `IStoreCallback` will be call with the retrieved products.
        /// </summary>
        /// <param name="products">The catalog of products to retrieve the store information from</param>
        public override void RetrieveProducts(ReadOnlyCollection <ProductDefinition> products)
        {
            var shouldFetchPurchases = ShouldFetchPurchasesNext();

            m_RetrieveProductsService.RetrieveProducts(products, shouldFetchPurchases);
        }