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

ParseGlyphCache() private method

Parse TS_CACHE_DEFINITION
private ParseGlyphCache ( byte data, int &currentIndex ) : TS_CACHE_DEFINITION
data byte data to be parsed
currentIndex int
return TS_CACHE_DEFINITION
        private TS_CACHE_DEFINITION ParseGlyphCache(byte[] data, ref int currentIndex)
        {
            TS_CACHE_DEFINITION cacheData = new TS_CACHE_DEFINITION();
            cacheData.CacheEntries = ParseUInt16(data, ref currentIndex, false);
            cacheData.CacheMaximumCellSize = ParseUInt16(data, ref currentIndex, false);

            return cacheData;
        }
RdpbcgrServerDecoder