System.Xml.XmlRawWriter.WriteXmlDeclaration C# (CSharp) Method

WriteXmlDeclaration() private method

private WriteXmlDeclaration ( string xmldecl ) : void
xmldecl string
return void
        internal virtual void WriteXmlDeclaration( string xmldecl ) {
        }

Same methods

XmlRawWriter::WriteXmlDeclaration ( XmlStandalone standalone ) : void

Usage Example

Ejemplo n.º 1
0
 /// <summary>
 /// Write the xml declaration.  This must be the first call.
 /// </summary>
 internal override void WriteXmlDeclaration(XmlStandalone standalone)
 {
     _wrapped.WriteXmlDeclaration(standalone);
 }
All Usage Examples Of System.Xml.XmlRawWriter::WriteXmlDeclaration