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