System.Attribute.Attribute.GetCustomAttribute C# (CSharp) Method

GetCustomAttribute() public static method

public static GetCustomAttribute ( Assembly element, Type attributeType ) : Attribute
element System.Reflection.Assembly
attributeType Type
return Attribute
		public static Attribute GetCustomAttribute (Assembly element, Type attributeType)
		{
			return GetCustomAttribute (element, attributeType, true);
		}

Same methods

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