2 writes to XmlAttributes
System.ServiceModel.Primitives (2)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
1086member.XmlAttributes = new XmlAttributes(additionalAttributesProvider); 1127member.XmlAttributes = new XmlAttributes();
25 references to XmlAttributes
System.Private.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1263if (!xmlReflectionMembers[i].XmlAttributes.XmlIgnore) 1308XmlAttributes a = xmlReflectionMember.XmlAttributes;
System.ServiceModel.Primitives (23)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (23)
1125if (member.XmlAttributes == null) 1132if (member.XmlAttributes.XmlAttribute != null) 1136else if (member.XmlAttributes.XmlAnyAttribute != null && !isWrapped) 1140else if (member.XmlAttributes.XmlChoiceIdentifier != null) 1144else if (member.XmlAttributes.XmlIgnore) 1148else if (member.XmlAttributes.Xmlns) 1152else if (member.XmlAttributes.XmlText != null) 1156else if (member.XmlAttributes.XmlEnum != null) 1166if (member.XmlAttributes.XmlArray != null && isMultiple) 1177if (member.XmlAttributes.XmlArray != null) 1179if (member.XmlAttributes.XmlArray.ElementName == String.Empty) 1181member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 1184if (member.XmlAttributes.XmlArray.Namespace == null) 1186member.XmlAttributes.XmlArray.Namespace = ns; 1189else if (HasNoXmlParameterAttributes(member.XmlAttributes)) 1191member.XmlAttributes.XmlArray = new XmlArrayAttribute(); 1192member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 1193member.XmlAttributes.XmlArray.Namespace = ns; 1198if (member.XmlAttributes.XmlElements == null || member.XmlAttributes.XmlElements.Count == 0) 1200if (HasNoXmlParameterAttributes(member.XmlAttributes)) 1205member.XmlAttributes.XmlElements.Add(elementAttribute); 1210foreach (XmlElementAttribute elementAttribute in member.XmlAttributes.XmlElements)