System.Xml.QueryOutputWriter.WriteDocType C# (CSharp) Méthode

WriteDocType() public méthode

Suppress this explicit call to WriteDocType if information was provided by XmlWriterSettings.
public WriteDocType ( string name, string pubid, string sysid, string subset ) : void
name string
pubid string
sysid string
subset string
Résultat void
        public override void WriteDocType(string name, string pubid, string sysid, string subset) {
            if (this.publicId == null && this.systemId == null) {
                Debug.Assert(!this.outputDocType);
                this.wrapped.WriteDocType(name, pubid, sysid, subset);
            }
        }