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

GetAttributes() private method

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

Same methods

SoapReflectionImporter::GetAttributes ( Type type ) : SoapAttributes