System.ComponentModel.LicenseManager.ValidateInternal C# (CSharp) Method

ValidateInternal() private static method

Internal validation helper.
private static ValidateInternal ( Type type, object instance, bool allowExceptions, System.ComponentModel.License &license ) : bool
type Type
instance object
allowExceptions bool
license System.ComponentModel.License
return bool
        private static bool ValidateInternal(Type type, object instance, bool allowExceptions, out License license)
        {
            string licenseKey;
            return ValidateInternalRecursive(CurrentContext,
                                             type,
                                             instance,
                                             allowExceptions,
                                             out license,
                                             out licenseKey);
        }