2 writes to XmlAttributes
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
837member.XmlAttributes = new XmlAttributes(additionalAttributesProvider.GetCustomAttributes()); 841member.XmlAttributes = new XmlAttributes();
25 references to XmlAttributes
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (2)
1278if (!xmlReflectionMembers[i].XmlAttributes.XmlIgnore) 1322XmlAttributes a = xmlReflectionMember.XmlAttributes;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (23)
840if (member.XmlAttributes == null) 845if (member.XmlAttributes.XmlAttribute != null) 847else if (member.XmlAttributes.XmlAnyAttribute != null && !isWrapped) 849else if (member.XmlAttributes.XmlChoiceIdentifier != null) 851else if (member.XmlAttributes.XmlIgnore) 853else if (member.XmlAttributes.Xmlns) 855else if (member.XmlAttributes.XmlText != null) 857else if (member.XmlAttributes.XmlEnum != null) 861if (member.XmlAttributes.XmlArray != null && isMultiple) 870if (member.XmlAttributes.XmlArray != null) 872if (member.XmlAttributes.XmlArray.ElementName == String.Empty) 873member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 874if (member.XmlAttributes.XmlArray.Namespace == null) 875member.XmlAttributes.XmlArray.Namespace = ns; 877else if (HasNoXmlParameterAttributes(member.XmlAttributes)) 879member.XmlAttributes.XmlArray = new XmlArrayAttribute(); 880member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 881member.XmlAttributes.XmlArray.Namespace = ns; 886if (member.XmlAttributes.XmlElements == null || member.XmlAttributes.XmlElements.Count == 0) 888if (HasNoXmlParameterAttributes(member.XmlAttributes)) 893member.XmlAttributes.XmlElements.Add(elementAttribute); 898foreach (XmlElementAttribute elementAttribute in member.XmlAttributes.XmlElements)