AppUpdater.Delta.DeltaAPI.IsSupported C# (CSharp) Method

IsSupported() public static method

public static IsSupported ( ) : bool
return bool
        public static bool IsSupported()
        {
            if (!checkedSupport)
            {
                isSupported = CheckApiSupport();
                checkedSupport = true;
            }

            return isSupported;
        }