3 writes to XmlArray
System.Private.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1344a.XmlArray = xmlArray; 1742a.XmlArray ??= CreateArrayAttribute();
System.ServiceModel.Primitives (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
1191member.XmlAttributes.XmlArray = new XmlArrayAttribute();
19 references to XmlArray
System.Private.Xml (10)
System\Xml\Serialization\XmlReflectionImporter.cs (10)
1746arrayElement.Name = XmlConvert.EncodeLocalName(a.XmlArray.ElementName.Length == 0 ? accessorName : a.XmlArray.ElementName); 1747arrayElement.Namespace = rpc ? null : a.XmlArray.Namespace ?? ns; 1752arrayElement.IsNullable = a.XmlArray.IsNullable; 1753arrayElement.Form = rpc ? XmlSchemaForm.Unqualified : a.XmlArray.Form == XmlSchemaForm.None ? elementFormDefault : a.XmlArray.Form; 1754sequenceId = a.XmlArray.Order; 2074if (a.XmlArray != null && a.XmlArray.Namespace != null) 2076throw new InvalidOperationException(SR.Format(SR.XmlRpcLitElementNamespace, "Namespace", a.XmlArray.Namespace));
System.ServiceModel.Primitives (9)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (9)
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; 1192member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 1193member.XmlAttributes.XmlArray.Namespace = ns; 1233xmlAttributes.XmlArray == null &&