System.ComponentModel.LicenseManager.ValidateInternal C# (CSharp) 메소드

ValidateInternal() 개인적인 정적인 메소드

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
리턴 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);
        }