3 writes to XmlArray
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (2)
1333a.XmlArray = xmlArray; 1726a.XmlArray = CreateArrayAttribute(accessor.TypeDesc);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
879member.XmlAttributes.XmlArray = new XmlArrayAttribute();
21 references to XmlArray
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (12)
1725if (a.XmlArray == null) 1730arrayElement.Name = XmlConvert.EncodeLocalName(a.XmlArray.ElementName.Length == 0 ? accessorName : a.XmlArray.ElementName); 1731arrayElement.Namespace = rpc ? null : a.XmlArray.Namespace == null ? ns : a.XmlArray.Namespace; 1736arrayElement.IsNullable = a.XmlArray.IsNullable; 1737arrayElement.Form = rpc ? XmlSchemaForm.Unqualified : a.XmlArray.Form == XmlSchemaForm.None ? elementFormDefault : a.XmlArray.Form; 1738sequenceId = a.XmlArray.Order; 2059if (a.XmlArray != null && a.XmlArray.Namespace != null) 2061throw new InvalidOperationException(string.Format(ResXml.XmlRpcLitElementNamespace, "Namespace", a.XmlArray.Namespace));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (9)
861if (member.XmlAttributes.XmlArray != null && isMultiple) 870if (member.XmlAttributes.XmlArray != null) 872if (member.XmlAttributes.XmlArray.ElementName == String.Empty) 873member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 874if (member.XmlAttributes.XmlArray.Namespace == null) 875member.XmlAttributes.XmlArray.Namespace = ns; 880member.XmlAttributes.XmlArray.ElementName = elementName.DecodedName; 881member.XmlAttributes.XmlArray.Namespace = ns; 915xmlAttributes.XmlArray == null &&