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