15 instantiations of XmlArrayItemAttribute
System.Web.Extensions (13)
Compilation\WCFModel\ClientOptions.cs (6)
135[XmlSerialization.XmlArrayItem("ExcludedType", typeof(ReferencedType))] 208[XmlSerialization.XmlArrayItem("NamespaceMapping", typeof(NamespaceMapping))] 227[XmlSerialization.XmlArrayItem("CollectionMapping", typeof(ReferencedCollectionType))] 382[XmlSerialization.XmlArrayItem("ReferencedAssembly", typeof(ReferencedAssembly))] 401[XmlSerialization.XmlArrayItem("ReferencedDataContractType", typeof(ReferencedType))] 420[XmlSerialization.XmlArrayItem("ServiceContractMapping", typeof(ContractMapping))]
Compilation\WCFModel\DataSvcMapFile.cs (4)
131[XmlArrayItem("MetadataSource", typeof(MetadataSource))] 145[XmlArrayItem("MetadataFile", typeof(MetadataFile))] 159[XmlArrayItem("ExtensionFile", typeof(ExtensionFile))] 173[XmlArrayItem("Parameter", typeof(Parameter))]
Compilation\WCFModel\SvcMapFile.cs (3)
152[XmlArrayItem("MetadataSource", typeof(MetadataSource))] 166[XmlArrayItem("MetadataFile", typeof(MetadataFile))] 180[XmlArrayItem("ExtensionFile", typeof(ExtensionFile))]
System.Web.Services (1)
System\Web\Services\Description\WebReferenceOptions.cs (1)
52[XmlArrayItem("type")]
System.Xml (1)
System\Xml\Serialization\XmlReflectionImporter.cs (1)
1877XmlArrayItemAttribute xmlArrayItem = new XmlArrayItemAttribute();
16 references to XmlArrayItemAttribute
System.Xml (16)
System\Xml\Serialization\XmlArrayItemAttributes.cs (8)
24public XmlArrayItemAttribute this[int index] { 25get { return (XmlArrayItemAttribute)List[index]; } 33public int Add(XmlArrayItemAttribute attribute) { 41public void Insert(int index, XmlArrayItemAttribute attribute) { 49public int IndexOf(XmlArrayItemAttribute attribute) { 57public bool Contains(XmlArrayItemAttribute attribute) { 65public void Remove(XmlArrayItemAttribute attribute) { 73public void CopyTo(XmlArrayItemAttribute[] array, int index) {
System\Xml\Serialization\XmlAttributes.cs (2)
106else if (attrs[i] is XmlArrayItemAttribute) { 107this.xmlArrayItems.Add((XmlArrayItemAttribute)attrs[i]);
System\Xml\Serialization\XmlCodeExporter.cs (1)
764ExportMetadata(metadata, typeof(XmlArrayItemAttribute), name, ns, typeDesc, dataTypeDesc, isNullable ? null : (object)false, form, nestingLevel, -1);
System\Xml\Serialization\XmlReflectionImporter.cs (5)
1300XmlArrayItemAttribute xmlArrayItem = attributes[i]; 1831XmlArrayItemAttribute item = (XmlArrayItemAttribute)arrayTypes[type.FullName, ns]; 1876static XmlArrayItemAttribute CreateArrayItemAttribute(TypeDesc typeDesc, int nestingLevel) { 1877XmlArrayItemAttribute xmlArrayItem = new XmlArrayItemAttribute();