System.Attribute.Attribute.IsDefined C# (CSharp) 메소드

IsDefined() 공개 정적인 메소드

public static IsDefined ( Module element, Type attributeType, bool inherit ) : bool
element System.Reflection.Module
attributeType Type
inherit bool
리턴 bool
		public static bool IsDefined (Module element, Type attributeType, bool inherit)
		{
			CheckParameters (element, attributeType);

			return element.IsDefined (attributeType, inherit);
		}

Same methods

Attribute.Attribute::IsDefined ( Assembly element, Type attributeType ) : bool
Attribute.Attribute::IsDefined ( Assembly element, Type attributeType, bool inherit ) : bool
Attribute.Attribute::IsDefined ( MemberInfo element, Type attributeType ) : bool
Attribute.Attribute::IsDefined ( MemberInfo element, Type attributeType, bool inherit ) : bool
Attribute.Attribute::IsDefined ( Module element, Type attributeType ) : bool
Attribute.Attribute::IsDefined ( ParameterInfo element, Type attributeType ) : bool
Attribute.Attribute::IsDefined ( ParameterInfo element, Type attributeType, bool inherit ) : bool