1 instantiation of XmlDeclaration
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
676return new XmlDeclaration(version, encoding, standalone, this);
14 references to XmlDeclaration
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (10)
294internal virtual XmlDeclaration Declaration 300XmlDeclaration dec = FirstChild as XmlDeclaration; 674public virtual XmlDeclaration CreateXmlDeclaration(String version, string encoding, string standalone) 927XmlDeclaration decl = (XmlDeclaration)node; 1383if (n is XmlDeclaration) 1649XmlDeclaration decl = Declaration; 1660XmlDeclaration decl = Declaration; 1671XmlDeclaration decl = Declaration;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
383private XmlDeclaration LoadDeclarationNode()
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (3)
398public String GetDeclarationAttr(XmlDeclaration decl, String name) 503return GetDeclarationAttr((XmlDeclaration)_curNode, name); 528return (ns.Length == 0) ? GetDeclarationAttr((XmlDeclaration)_curNode, name) : null;