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

WriteChars() public method

A method used to override the method "WriteChars" of XmlWriter.
public WriteChars ( char buffer, int index, int count ) : void
buffer char A parameter represents the character array containing the text to write.
index int A parameter represents the position in the buffer indicating the start of the text to write.
count int A parameter represents the number of characters to write.
return void
        public override void WriteChars(char[] buffer, int index, int count) 
        {
            this.originalXmlWriter.WriteChars(buffer, index, count); 
            this.injectorXmlTextWriter.WriteChars(buffer, index, count); 
        }