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