FMX.InAppPurchase.IInAppPurchaseCallbacks.DoProductsRequestResponse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoProductsRequestResponse(const Products: TIAPProductList; const InvalidProductIDs: TStrings);

C++

virtual void __fastcall DoProductsRequestResponse(TIAPProductList* const Products, System::Classes::TStrings* const InvalidProductIDs) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.InAppPurchase.pas
FMX.InAppPurchase.hpp
FMX.InAppPurchase IInAppPurchaseCallbacks

Description

Called after successfully retrieving information about the specified list of product IDs.

This method provides the following arguments:

  • Products, a TList of instances of TProduct with detailed information about each of the products with a valid ID.
  • InvalidProductIDs, a TStrings that provides a list with the previously specified product IDs that are invalid.

See Also