Billing.BillingReceiver.Notify C# (CSharp) Method

Notify() private method

This is called when Android Market sends a "notify" message indicating that transaction information is available. The request includes a nonce (random number used once) that we generate and Android Market signs and sends back to us with the purchase state and other transaction details. This BroadcastReceiver cannot bind to the MarketBillingService directly so it starts the BillingService, which does the actual work of sending the message.
private Notify ( Android.Content.Context context, string notifyId ) : void
context Android.Content.Context the context
notifyId string the notification ID
return void
        private void Notify(Context context, string notifyId)
        {
            Intent intent = new Intent(Consts.ACTION_GET_PURCHASE_INFORMATION);
            intent.SetClass(context, typeof(BillingService));
            intent.PutExtra(Consts.NOTIFICATION_ID, notifyId);
            context.StartService(intent);
        }