Microsoft.Protocols.TestSuites.Common.XmlWriterInjector.WriteProcessingInstruction C# (CSharp) Method

WriteProcessingInstruction() public method

A method used to override the method "WriteProcessingInstruction" of XmlWriter.
public WriteProcessingInstruction ( string name, string text ) : void
name string A parameter represents the name of the processing instruction.
text string A parameter represents the text to include in the processing instruction.
return void
        public override void WriteProcessingInstruction(string name, string text)
        {
            this.originalXmlWriter.WriteProcessingInstruction(name, text);
            this.injectorXmlTextWriter.WriteProcessingInstruction(name, text); 
        }