AcTools.AcdFile.Acd.IsAvailable C# (CSharp) Method

IsAvailable() public static method

public static IsAvailable ( ) : bool
return bool
        public static bool IsAvailable() {
            try {
                AcdEncryption.CreateKey(null);
            } catch (NotImplementedException) {
                return false;
            } catch (NullReferenceException) {
                return true;
            }

            return true;
        }
    }