Method RestoreTransactions
RestoreTransactions(Action<bool>)
Initiate a request to Apple to restore previously made purchases.
Declaration
[Obsolete("RestoreTransactions(Action<bool> callback) is deprecated, please use RestoreTransactions(Action<bool, string> callback) instead.")]
void RestoreTransactions(Action<bool> callback)
Parameters
Type | Name | Description |
---|---|---|
Action<bool> | callback | Action will be called when the request to Apple comes back. The bool will be true if it was successful or false if it was not. |
RestoreTransactions(Action<bool, string>)
Initiate a request to Apple to restore previously made purchases.
Declaration
void RestoreTransactions(Action<bool, string> callback)
Parameters
Type | Name | Description |
---|---|---|
Action<bool, string> | callback | Action will be called when the request to Apple comes back. The bool will be true if it was successful with a null string or false if it was not with the error message in the string. |