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

WriteBinHex() public method

A method used to encodes the specified binary bytes as BinHex and writes out the resulting text.
public WriteBinHex ( byte buffer, int index, int count ) : void
buffer byte A parameter represents the 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 WriteBinHex(byte[] buffer, int index, int count)
        {
            this.originalXmlWriter.WriteBinHex(buffer, index, count);
            this.injectorXmlTextWriter.WriteBinHex(buffer, index, count);
        }