System.Runtime.Serialization.SerializationFieldInfo.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( Type attributeType, bool inherit ) : Object[]
attributeType System.Type
inherit bool
return Object[]
        public override Object[] GetCustomAttributes(Type attributeType, bool inherit) {
            return m_field.GetCustomAttributes(attributeType, inherit);
        }

Same methods

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