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

ParseCapsTypeDrawNineGridCache() private method

Parse TS_RAIL_CAPABILITYSET
private ParseCapsTypeDrawNineGridCache ( byte data ) : TS_DRAWNINEGRIDCACHE_CAPABILITYSET
data byte data to be parsed
return TS_DRAWNINEGRIDCACHE_CAPABILITYSET
        private TS_DRAWNINEGRIDCACHE_CAPABILITYSET ParseCapsTypeDrawNineGridCache(byte[] data)
        {
            TS_DRAWNINEGRIDCACHE_CAPABILITYSET set = new TS_DRAWNINEGRIDCACHE_CAPABILITYSET();

            // TS_DRAWNINEGRIDCACHE_CAPABILITYSET: rawData
            set.rawData = data;

            return set;
        }
RdpbcgrServerDecoder