System.Reflection.RuntimeEventInfo.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( bool inherit ) : Object[]
inherit bool
return Object[]
        public override Object[] GetCustomAttributes(bool inherit)
        {
            return CustomAttribute.GetCustomAttributes(this, typeof(object) as RuntimeType);
        }

Same methods

RuntimeEventInfo::GetCustomAttributes ( Type attributeType, bool inherit ) : Object[]