System.Xml.XmlRawWriter.WriteXmlDeclaration C# (CSharp) Méthode

WriteXmlDeclaration() private méthode

private WriteXmlDeclaration ( XmlStandalone standalone ) : void
standalone XmlStandalone
Résultat void
        internal virtual void WriteXmlDeclaration( XmlStandalone standalone ) {
        }
        internal virtual void WriteXmlDeclaration( string xmldecl ) {

Same methods

XmlRawWriter::WriteXmlDeclaration ( string xmldecl ) : void

Usage Example

 /// <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