2 instantiations of XmlUnspecifiedAttribute
System.Xml (2)
System\Xml\Dom\XmlDocument.cs (1)
886return new XmlUnspecifiedAttribute( prefix, localName, namespaceURI, this );
System\Xml\Dom\XmlLoader.cs (1)
502XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute( r.Prefix, r.LocalName, r.NamespaceURI, this.doc );
13 references to XmlUnspecifiedAttribute
System.Xml (13)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
390XmlUnspecifiedAttribute defAttr = attr as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlDocument.cs (2)
585XmlUnspecifiedAttribute unspAttr = defattr as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlElement.cs (2)
60if (attr is XmlUnspecifiedAttribute && attr.Specified == false) 61( ( XmlUnspecifiedAttribute )newAttr).SetSpecified(false);
System\Xml\Dom\XmlLoader.cs (3)
275XmlUnspecifiedAttribute defAttr = attr as XmlUnspecifiedAttribute; 502XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute( r.Prefix, r.LocalName, r.NamespaceURI, this.doc );
System\Xml\Dom\XmlText.cs (2)
79XmlUnspecifiedAttribute attr = parent as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlUnspecifiedAttribute.cs (2)
29XmlUnspecifiedAttribute attr = (XmlUnspecifiedAttribute)doc.CreateDefaultAttribute(Prefix, LocalName, NamespaceURI);