2 instantiations of XmlUnspecifiedAttribute
System.Private.Xml (2)
System\Xml\Dom\XmlDocument.cs (1)
1067return new XmlUnspecifiedAttribute(prefix, localName, namespaceURI, this);
System\Xml\Dom\XmlLoader.cs (1)
571XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc!);
13 references to XmlUnspecifiedAttribute
System.Private.Xml (13)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
427XmlUnspecifiedAttribute? defAttr = attr as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlDocument.cs (2)
717XmlUnspecifiedAttribute? unspAttr = defattr as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlElement.cs (2)
68XmlUnspecifiedAttribute? unspecAttr = newAttr as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlLoader.cs (3)
314XmlUnspecifiedAttribute? defAttr = attr as XmlUnspecifiedAttribute; 571XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc!);
System\Xml\Dom\XmlText.cs (2)
93XmlUnspecifiedAttribute? attr = parent as XmlUnspecifiedAttribute;
System\Xml\Dom\XmlUnspecifiedAttribute.cs (2)
26XmlUnspecifiedAttribute attr = (XmlUnspecifiedAttribute)doc.CreateDefaultAttribute(Prefix, LocalName, NamespaceURI);