Returns a Boolean if one or more instance of attributeType is defined on this member.
[Visual Basic] MustOverride Public Function IsDefined( _ ByVal attributeType As Type _ ) As Boolean [C#] public abstract bool IsDefined( Type attributeType ); [C++] public: virtual bool IsDefined( Type* attributeType ) = 0; [JScript] public abstract function IsDefined( attributeType : Type ) : Boolean;
Returns true if one or more instance of attributeType is defined on this member, otherwise false.
The IsDefined method is an abstract method that retrieves a Boolean value when a custom attribute has been defined on the Type object . Otherwise a false is returned.
MemberInfo Class | MemberInfo Members | System.Reflection Namespace