System.Xml.Serialization.XmlReflectionImporter.GetAttributes C# (CSharp) Method

GetAttributes() private method

private GetAttributes ( MemberInfo memberInfo ) : XmlAttributes
memberInfo System.Reflection.MemberInfo
return XmlAttributes
        private XmlAttributes GetAttributes(MemberInfo memberInfo)
        {
            XmlAttributes attrs = _attributeOverrides[memberInfo.DeclaringType, memberInfo.Name];
            if (attrs != null) return attrs;
            return new XmlAttributes(memberInfo);
        }

Same methods

XmlReflectionImporter::GetAttributes ( Type type, bool canBeSimpleType ) : XmlAttributes