2 instantiations of XmlUnspecifiedAttribute
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
1002return new XmlUnspecifiedAttribute(prefix, localName, namespaceURI, this);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
573XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc);
13 references to XmlUnspecifiedAttribute
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (2)
450XmlUnspecifiedAttribute defAttr = attr as XmlUnspecifiedAttribute;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
652XmlUnspecifiedAttribute unspAttr = defattr as XmlUnspecifiedAttribute;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (2)
69if (attr is XmlUnspecifiedAttribute && attr.Specified == false) 70((XmlUnspecifiedAttribute)newAttr).SetSpecified(false);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (3)
316XmlUnspecifiedAttribute defAttr = attr as XmlUnspecifiedAttribute; 573XmlUnspecifiedAttribute defattr = new XmlUnspecifiedAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (2)
94XmlUnspecifiedAttribute attr = parent as XmlUnspecifiedAttribute;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlUnspecifiedAttribute.cs (2)
29XmlUnspecifiedAttribute attr = (XmlUnspecifiedAttribute)doc.CreateDefaultAttribute(Prefix, LocalName, NamespaceURI);