Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RdpbcgrDecoder.ParseExBitmapdataHeader C# (CSharp) Method

ParseExBitmapdataHeader() private method

Parse TS_COMPRESSED_BITMAP_HEADER_EX
private ParseExBitmapdataHeader ( byte data, int &currentIndex ) : TS_COMPRESSED_BITMAP_HEADER_EX
data byte data to be parsed
currentIndex int current parser index
return TS_COMPRESSED_BITMAP_HEADER_EX
        private TS_COMPRESSED_BITMAP_HEADER_EX ParseExBitmapdataHeader(
            byte[] data,
            ref int currentIndex)
        {
            TS_COMPRESSED_BITMAP_HEADER_EX exTsCompressedBitmapHeader = new TS_COMPRESSED_BITMAP_HEADER_EX();
            exTsCompressedBitmapHeader.highUniqueId = ParseUInt32(data, ref currentIndex, false);
            exTsCompressedBitmapHeader.lowUniqueId = ParseUInt32(data, ref currentIndex, false);
            exTsCompressedBitmapHeader.tmMilliseconds = ParseUInt64(data, ref currentIndex, false);
            exTsCompressedBitmapHeader.tmSeconds = ParseUInt64(data, ref currentIndex, false);

            return exTsCompressedBitmapHeader;
        }
RdpbcgrDecoder