Billing.BillingService.ConfirmNotificationsMethod C# (CSharp) Méthode

ConfirmNotificationsMethod() private méthode

Confirms receipt of a purchase state change. Each {@code notifyId} is an opaque identifier that came from the server. This method sends those identifiers back to the MarketBillingService, which ACKs them to the server. Returns false if there was an error trying to connect to the MarketBillingService.
private ConfirmNotificationsMethod ( int startId, string notifyIds ) : bool
startId int an identifier for the invocation instance of this service
notifyIds string a list of opaque identifiers associated with purchase /// state changes.
Résultat bool
        private bool ConfirmNotificationsMethod(int startId, string[] notifyIds)
        {
            return (new ConfirmNotifications(this, startId, notifyIds)).RunRequest();
        }