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

WriteBase64() public method

A method used to override the method "WriteBase64" of XmlWriter.
public WriteBase64 ( byte buffer, int index, int count ) : void
buffer byte A parameter represents Byte array to encode.
index int A parameter represents the position in the buffer indicating the start of the bytes to write.
count int A parameter represents the number of bytes to write.
return void
        public override void WriteBase64(byte[] buffer, int index, int count) 
        { 
            this.originalXmlWriter.WriteBase64(buffer, index, count); 
            this.injectorXmlTextWriter.WriteBase64(buffer, index, count); 
        }