5 instantiations of XmlAnyElementAttribute
System.ServiceModel (1)
System\ServiceModel\Description\MetadataSection.cs (1)
64[XmlAnyElement]
System.Web.Services (2)
System\Web\Services\Configuration\WebServicesSection.cs (1)
232xmlAttrs.XmlAnyElements.Add(new XmlAnyElementAttribute());
System\Web\Services\Description\ServiceDescription.cs (1)
603[XmlAnyElement("documentation", Namespace = ServiceDescription.Namespace)]
System.Xml (2)
System\Xml\Schema\XmlSchemaAppInfo.cs (1)
35[XmlText(), XmlAnyElement]
System\Xml\Schema\XmlSchemaDocumentation.cs (1)
48[XmlText(), XmlAnyElement]
19 references to XmlAnyElementAttribute
System.ServiceModel (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
335foreach (XmlAnyElementAttribute anyElement in xmlAttributes.XmlAnyElements)
System.Web.Extensions (2)
Compilation\WCFModel\SchemaMerger.cs (2)
38typeof(System.Xml.Serialization.XmlAnyElementAttribute), 666if (attribute is System.Xml.Serialization.XmlAnyElementAttribute)
System.Xml (16)
System\Xml\Serialization\XmlAnyElementAttributes.cs (8)
24public XmlAnyElementAttribute this[int index] { 25get { return (XmlAnyElementAttribute)List[index]; } 33public int Add(XmlAnyElementAttribute attribute) { 41public void Insert(int index, XmlAnyElementAttribute attribute) { 49public int IndexOf(XmlAnyElementAttribute attribute) { 57public bool Contains(XmlAnyElementAttribute attribute) { 65public void Remove(XmlAnyElementAttribute attribute) { 73public void CopyTo(XmlAnyElementAttribute[] array, int index) {
System\Xml\Serialization\XmlAttributes.cs (5)
97XmlAnyElementAttribute wildcard = null; 109else if (attrs[i] is XmlAnyElementAttribute) { 110XmlAnyElementAttribute any = (XmlAnyElementAttribute)attrs[i]; 116this.xmlAnyElements.Add((XmlAnyElementAttribute)attrs[i]);
System\Xml\Serialization\XmlCodeExporter.cs (1)
816CodeAttributeDeclaration attribute = new CodeAttributeDeclaration(typeof(XmlAnyElementAttribute).FullName);
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1457XmlAnyElementAttribute xmlAnyElement = a.XmlAnyElements[i]; 1669XmlAnyElementAttribute xmlAnyElement = a.XmlAnyElements[i];