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