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

ParseBitmapCacheCellInfo() private method

Parse TS_BITMAPCACHE_CELL_CACHE_INFO
private ParseBitmapCacheCellInfo ( byte data, int &index ) : TS_BITMAPCACHE_CELL_CACHE_INFO
data byte data to be parsed
index int
return TS_BITMAPCACHE_CELL_CACHE_INFO
        private TS_BITMAPCACHE_CELL_CACHE_INFO ParseBitmapCacheCellInfo(byte[] data, ref int index)
        {
            TS_BITMAPCACHE_CELL_CACHE_INFO cellCacheInfo = new TS_BITMAPCACHE_CELL_CACHE_INFO();
            cellCacheInfo.NumEntriesAndK = ParseUInt32(data, ref index, false);

            return cellCacheInfo;
        }
RdpbcgrServerDecoder