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

ParseCapsTypeDrawGdiPlus() private method

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

            // TS_DRAWGRIDPLUS_CAPABILITYSET: rawData
            set.rawData = data;

            return set;
        }
RdpbcgrServerDecoder