2 instantiations of XmlArrayItemAttribute
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (1)
2156XmlArrayItemAttribute xmlArrayItem = new XmlArrayItemAttribute();
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (1)
55[XmlArrayItem("type")]
16 references to XmlArrayItemAttribute
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlArrayItemAttributes.cs (8)
22public XmlArrayItemAttribute this[int index] 24get { return (XmlArrayItemAttribute)List[index]; } 32public int Add(XmlArrayItemAttribute attribute) 41public void Insert(int index, XmlArrayItemAttribute attribute) 50public int IndexOf(XmlArrayItemAttribute attribute) 59public bool Contains(XmlArrayItemAttribute attribute) 68public void Remove(XmlArrayItemAttribute attribute) 77public void CopyTo(XmlArrayItemAttribute[] array, int index)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlAttributes.cs (2)
115else if (attrib is XmlArrayItemAttribute) 117_xmlArrayItems.Add((XmlArrayItemAttribute)attrib);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (1)
878ExportMetadata(metadata, typeof(XmlArrayItemAttribute), name, ns, typeDesc, dataTypeDesc, isNullable ? null : (object)false, form, nestingLevel, -1);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (5)
1497XmlArrayItemAttribute xmlArrayItem = attributes[i]; 2101XmlArrayItemAttribute item = (XmlArrayItemAttribute)arrayTypes[type.FullName, ns]; 2154private static XmlArrayItemAttribute CreateArrayItemAttribute(TypeDesc typeDesc, int nestingLevel) 2156XmlArrayItemAttribute xmlArrayItem = new XmlArrayItemAttribute();