Class AppleReceiptParser
This class with parse the Apple receipt data received in byte[] into a AppleReceipt object
Inherited Members
Namespace: UnityEngine .Purchasing.Security
Assembly: solution.dll
Syntax
public class AppleReceiptParser
Methods
ArrayEquals<T>(T[], T[])
Indicates whether both arrays are the same or contains the same information.
This method is used to validate if the receipts are different.
Declaration
public static bool ArrayEquals<T>(T[] a, T[] b) where T : IEquatable<T>
Parameters
Type | Name | Description |
---|---|---|
T[] | a | First object to validate against second object. |
T[] | b | Second object to validate against first object. |
Returns
Type | Description |
---|---|
bool | Returns true if they are the same length and contain the same information or else returns false. |
Type Parameters
Name | Description |
---|---|
T | Type of object to check. |
Parse(byte[])
THIS IS A STUB, WILL NOT EXECUTE CODE!
Parse the Apple receipt data into a AppleReceipt object
Declaration
public AppleReceipt Parse(byte[] receiptData)
Parameters
Type | Name | Description |
---|---|---|
byte[] | receiptData | Apple receipt data |
Returns
Type | Description |
---|---|
Apple |
The converted AppleReceipt object from the Apple receipt data |
Parse(byte[])
THIS IS A STUB, WILL NOT EXECUTE CODE!
Parse the Apple receipt data into a AppleReceipt object
Declaration
public AppleReceipt Parse(byte[] receiptData)
Parameters
Type | Name | Description |
---|---|---|
byte[] | receiptData | Apple receipt data |
Returns
Type | Description |
---|---|
Apple |
The converted AppleReceipt object from the Apple receipt data |