3 writes to Standalone
System.Xml (3)
System\Xml\Dom\XmlDeclaration.cs (3)
29this.Standalone = standalone; 102Standalone = tempStandalone; 106Standalone = orgStandalone;
9 references to Standalone
System.Data (2)
fx\src\data\System\NewXml\DataPointer.cs (2)
640return ( ( XmlDeclaration ) (this.node)).Standalone; 644return dec.Standalone;
System.Xml (7)
System\Xml\Dom\XmlDeclaration.cs (4)
76if ( Standalone.Length > 0 ) { 78strb.Append(Standalone); 89string orgStandalone = this.Standalone; 135return OwnerDocument.CreateXmlDeclaration( Version, Encoding, Standalone );
System\Xml\Dom\XmlDocument.cs (2)
818newNode = CreateXmlDeclaration( decl.Version, decl.Encoding, decl.Standalone ); 1442return decl.Standalone;
System\Xml\Dom\XmlNodeReader.cs (1)
351return decl.Standalone;