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

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

Gets the purchase information. This message includes a list of notification IDs sent to us by Android Market, which we include in our request. The server responds with the purchase information, encoded as a JSON string, and sends that to the BillingReceiver in an intent with the action Consts#ACTION_PURCHASE_STATE_CHANGED. Returns false if there was an error trying to connect to the MarketBillingService.
private GetPurchaseInformationMethod ( 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
Результат bool
        private bool GetPurchaseInformationMethod(int startId, string[] notifyIds)
        {
            return (new GetPurchaseInformation(this, startId, notifyIds)).RunRequest();
        }