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

ParseTsFpInputScancode() private method

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

            scancode.keyCode = ParseByte(data, ref currentIndex);

            return scancode;
        }
RdpbcgrServerDecoder