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

WriteRaw() public method

A method used to override the method "WriteRaw" of XmlWriter.
public WriteRaw ( char buffer, int index, int count ) : void
buffer char A parameter represents character array containing the text to write.
index int A parameter represents the position within 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 WriteRaw(char[] buffer, int index, int count)
        {
            this.originalXmlWriter.WriteRaw(buffer, index, count);
            this.injectorXmlTextWriter.WriteRaw(buffer, index, count); 
        }
        

Same methods

XmlWriterInjector::WriteRaw ( string data ) : void