Billing.ResponseHandler.CheckBillingSupportedResponse C# (CSharp) Метод

CheckBillingSupportedResponse() публичный статический Метод

Notifies the application of the availability of the MarketBillingService. This method is called in response to the application calling BillingService#checkBillingSupported().
public static CheckBillingSupportedResponse ( bool supported, string type ) : void
supported bool true if in-app billing is supported.
type string
Результат void
        public static void CheckBillingSupportedResponse(bool supported, string type)
        {
            if (sPurchaseObserver != null)
            {
                sPurchaseObserver.OnBillingSupported(supported, type);
            }
        }