Billing.BillingService.GetPurchaseInformation.Run C# (CSharp) Method

Run() protected method

protected Run ( ) : long
return long
            protected internal override long Run()
            {
                mNonce = Security.GenerateNonce();

                Bundle request = MakeRequestBundle("GET_PURCHASE_INFORMATION");
                request.PutLong(Consts.BILLING_REQUEST_NONCE, mNonce);
                request.PutStringArray(Consts.BILLING_REQUEST_NOTIFY_IDS, mNotifyIds);
                Bundle response = mService.SendBillingRequest(request);
                LogResponseCode("getPurchaseInformation", response);
                return response.GetLong(Consts.BILLING_RESPONSE_REQUEST_ID, Consts.BILLING_RESPONSE_INVALID_REQUEST_ID);
            }
BillingService.GetPurchaseInformation