System.Reflection.Emit.MethodBuilderInstantiation.GetCustomAttributes C# (CSharp) Метод

GetCustomAttributes() публичный Метод

public GetCustomAttributes ( Type attributeType, bool inherit ) : Object[]
attributeType System.Type
inherit bool
Результат Object[]
        public override Object[] GetCustomAttributes(Type attributeType, bool inherit) { return m_method.GetCustomAttributes(attributeType, inherit); }
        public override bool IsDefined(Type attributeType, bool inherit) { return m_method.IsDefined(attributeType, inherit); }

Same methods

MethodBuilderInstantiation::GetCustomAttributes ( bool inherit ) : Object[]