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

ParseCapsTypeSurfaceCommands() private method

Parse TS_SURFCMDS_CAPABILITYSET
private ParseCapsTypeSurfaceCommands ( byte data ) : TS_SURFCMDS_CAPABILITYSET
data byte data to be parsed
return TS_SURFCMDS_CAPABILITYSET
        private TS_SURFCMDS_CAPABILITYSET ParseCapsTypeSurfaceCommands(byte[] data)
        {
            TS_SURFCMDS_CAPABILITYSET set = RdpbcgrUtility.ToStruct<TS_SURFCMDS_CAPABILITYSET>(data);

            // Check if data length is consistent with the decoded struct length
            VerifyDataLength(data.Length, Marshal.SizeOf(set), ConstValue.ERROR_MESSAGE_DATA_LENGTH_INCONSISTENT);
            return set;
        }
RdpbcgrServerDecoder