Exemple #1
0
        protected virtual void RaiseOnConnected(bool connected)
        {
            if (!connected)
            {
                return;
            }

            BillingHelper = new InAppBillingHelper(_activity, Service, _publicKey);

            var handler = OnConnected;

            if (handler != null)
            {
                handler(this, EventArgs.Empty);
            }
        }
        protected virtual void RaiseOnConnected(bool connected)
        {
            if (!connected) {
                return;
            }

            BillingHelper = new InAppBillingHelper (_activity, Service, _publicKey);

            var handler = OnConnected;
            if (handler != null) {
                handler (this, EventArgs.Empty);
            }
        }