3 writes to XmlArray
System.ServiceModel (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
1027
member.XmlAttributes.
XmlArray
= new XmlArrayAttribute();
System.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1161
a.
XmlArray
= xmlArray;
1507
a.
XmlArray
= CreateArrayAttribute(accessor.TypeDesc);
21 references to XmlArray
System.ServiceModel (9)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (9)
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;
1028
member.XmlAttributes.
XmlArray
.ElementName = elementName.DecodedName;
1029
member.XmlAttributes.
XmlArray
.Namespace = ns;
1063
xmlAttributes.
XmlArray
== null &&
System.Xml (12)
System\Xml\Serialization\XmlReflectionImporter.cs (12)
1506
if (a.
XmlArray
== null)
1511
arrayElement.Name = XmlConvert.EncodeLocalName(a.
XmlArray
.ElementName.Length == 0 ? accessorName : a.
XmlArray
.ElementName);
1512
arrayElement.Namespace = rpc ? null : a.
XmlArray
.Namespace == null ? ns : a.
XmlArray
.Namespace;
1517
arrayElement.IsNullable = a.
XmlArray
.IsNullable;
1518
arrayElement.Form = rpc ? XmlSchemaForm.Unqualified : a.
XmlArray
.Form == XmlSchemaForm.None ? elementFormDefault : a.
XmlArray
.Form;
1519
sequenceId = a.
XmlArray
.Order;
1798
if (a.
XmlArray
!= null && a.
XmlArray
.Namespace != null) {
1799
throw new InvalidOperationException(Res.GetString(Res.XmlRpcLitElementNamespace, "Namespace", a.
XmlArray
.Namespace));