Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RdpbcgrServerDecoder.ParseTsFpInputUnicode C# (CSharp) Method

ParseTsFpInputUnicode() private method

Parse TS_FP_UNICODE_KEYBOARD_EVENT (parser index is updated according to parsed length)
private ParseTsFpInputUnicode ( byte data, int &currentIndex ) : TS_FP_UNICODE_KEYBOARD_EVENT
data byte data to be parsed
currentIndex int current parser index
return TS_FP_UNICODE_KEYBOARD_EVENT
        private TS_FP_UNICODE_KEYBOARD_EVENT ParseTsFpInputUnicode(byte[] data, ref int currentIndex)
        {
            TS_FP_UNICODE_KEYBOARD_EVENT unicode = new TS_FP_UNICODE_KEYBOARD_EVENT();

            unicode.unicodeCode= ParseUInt16(data, ref currentIndex, false);

            return unicode;
        }
RdpbcgrServerDecoder