6 writes to XmlAttributes
System.ServiceModel (2)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
963
member.
XmlAttributes
= new XmlAttributes(additionalAttributesProvider);
988
member.
XmlAttributes
= new XmlAttributes();
System.Web.Services (4)
System\Web\Services\Protocols\SoapReflector.cs (4)
368
member.
XmlAttributes
= soapParamInfo.xmlAttributes;
413
member.
XmlAttributes
= soapParamInfo.xmlAttributes;
425
member.
XmlAttributes
= new XmlAttributes(methodInfo.ReturnTypeCustomAttributeProvider);
491
member.
XmlAttributes
= new XmlAttributes();
27 references to XmlAttributes
System.ServiceModel (23)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (23)
987
if (member.
XmlAttributes
== null)
992
if (member.
XmlAttributes
.XmlAttribute != null)
994
else if (member.
XmlAttributes
.XmlAnyAttribute != null && !isWrapped)
996
else if (member.
XmlAttributes
.XmlChoiceIdentifier != null)
998
else if (member.
XmlAttributes
.XmlIgnore)
1000
else if (member.
XmlAttributes
.Xmlns)
1002
else if (member.
XmlAttributes
.XmlText != null)
1004
else if (member.
XmlAttributes
.XmlEnum != null)
1008
if (member.
XmlAttributes
.XmlArray != null && isMultiple)
1018
if (member.
XmlAttributes
.XmlArray != null)
1020
if (member.
XmlAttributes
.XmlArray.ElementName == String.Empty)
1021
member.
XmlAttributes
.XmlArray.ElementName = elementName.DecodedName;
1022
if (member.
XmlAttributes
.XmlArray.Namespace == null)
1023
member.
XmlAttributes
.XmlArray.Namespace = ns;
1025
else if (HasNoXmlParameterAttributes(member.
XmlAttributes
))
1027
member.
XmlAttributes
.XmlArray = new XmlArrayAttribute();
1028
member.
XmlAttributes
.XmlArray.ElementName = elementName.DecodedName;
1029
member.
XmlAttributes
.XmlArray.Namespace = ns;
1034
if (member.
XmlAttributes
.XmlElements == null || member.
XmlAttributes
.XmlElements.Count == 0)
1036
if (HasNoXmlParameterAttributes(member.
XmlAttributes
))
1041
member.
XmlAttributes
.XmlElements.Add(elementAttribute);
1046
foreach (XmlElementAttribute elementAttribute in member.
XmlAttributes
.XmlElements)
System.Web.Services (2)
System\Web\Services\Protocols\SoapReflector.cs (2)
426
member.
XmlAttributes
.XmlRoot = null; // Ignore XmlRoot attribute used by get/post
495
member.
XmlAttributes
.XmlElements.Add(attr);
System.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1116
if (!xmlReflectionMembers[i].
XmlAttributes
.XmlIgnore) {
1152
XmlAttributes a = xmlReflectionMember.
XmlAttributes
;