Billing.BillingService.CheckResponseCode C# (CSharp) Метод

CheckResponseCode() приватный Метод

This is called when we receive a response code from Android Market for a request that we made. This is used for reporting various errors and for acknowledging that an order was sent to the server. This is NOT used for any purchase state changes. All purchase state changes are received in the BillingReceiver and passed to this service, where they are handled in #purchaseStateChanged(int, String, String).
private CheckResponseCode ( long requestId, Consts responseCode ) : void
requestId long a number that identifies a request, assigned at the /// time the request was made to Android Market
responseCode Consts a response code from Android Market to indicate the state /// of the request
Результат void
        private void CheckResponseCode(long requestId, Consts.ResponseCode responseCode)
        {
            BillingRequest request = mSentRequests[requestId];
            if (request != null)
            {
                if (Consts.DEBUG)
                {
                    Log.Debug(TAG, request.GetType().Name + ": " + responseCode);
                }
                request.ResponseCodeReceived(responseCode);
            }
            mSentRequests.Remove(requestId);
        }