FMX.InAppPurchase.IInAppPurchaseCallbacks.DoDownloadCompleted

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoDownloadCompleted(const ProductID, ContentID, FilePath: string);

C++

virtual void __fastcall DoDownloadCompleted(const System::UnicodeString ProductID, const System::UnicodeString ContentID, const System::UnicodeString FilePath) = 0 ;

Properties

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

Description

Called after the download of a product's data has been completed.

Note: Download of product data is only available for the iOS In-App Purchase service.

This method provides the following arguments:

  • ProductID is the ID of the product.
  • ContentID is the ID of the content that has been downloaded.
  • FilePath specifies where the content has been downloaded.

See Also