FMX.InAppPurchase.IInAppPurchaseCallbacks.DoVerifyPayload

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoVerifyPayload(const Payload: String; var PayloadOk: Boolean);

C++

virtual void __fastcall DoVerifyPayload(const System::UnicodeString Payload, bool &PayloadOk) = 0 ;

Properties

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

Description

Called after obtaining the developer payload string.

You should check whether the obtained developer payload string, Payload, is the expected string or not. If it is not the expected string, set PayloadOk to False to invalidate the purchase.

See Also