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

CheckBillingSupported() публичный Метод

Constructor Note: Support for subscriptions implies support for one-time purchases. However, the opposite is not true. Developers may want to perform two checks if both one-time and subscription products are available. @pram itemType Either Consts.ITEM_TYPE_INAPP or Consts.ITEM_TYPE_SUBSCRIPTION, indicating the type of item support is being checked for.
public CheckBillingSupported ( BillingService outerInstance, string itemType ) : System
outerInstance BillingService
itemType string
Результат System
            public CheckBillingSupported(BillingService outerInstance, string itemType)
                : base(outerInstance, -1)
            {
                this.outerInstance = outerInstance;
                mProductType = itemType;
            }

Same methods

BillingService.CheckBillingSupported::CheckBillingSupported ( BillingService outerInstance ) : System
BillingService.CheckBillingSupported