Boo.Lang.Compiler.TypeSystem.Reflection.ExternalType.IsDefined C# (CSharp) Méthode

IsDefined() public méthode

public IsDefined ( IType attributeType ) : bool
attributeType IType
Résultat bool
        public bool IsDefined(IType attributeType)
        {
            ExternalType type = attributeType as ExternalType;
            if (null == type) return false;
            return MetadataUtil.IsAttributeDefined(_type, type.ActualType);
        }