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

Run() защищенный Метод

protected Run ( ) : long
Результат long
            protected internal override long Run()
            {
                Bundle request = MakeRequestBundle("CONFIRM_NOTIFICATIONS");
                request.PutStringArray(Consts.BILLING_REQUEST_NOTIFY_IDS, mNotifyIds);
                Bundle response = mService.SendBillingRequest(request);
                LogResponseCode("confirmNotifications", response);
                return response.GetLong(Consts.BILLING_RESPONSE_REQUEST_ID, Consts.BILLING_RESPONSE_INVALID_REQUEST_ID);
            }
BillingService.ConfirmNotifications