Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RdpbcgrServerDecoder.ParseCapsTypeBitmap C# (CSharp) 메소드

ParseCapsTypeBitmap() 개인적인 메소드

Parse TS_BITMAP_CAPABILITYSET
private ParseCapsTypeBitmap ( byte data ) : TS_BITMAP_CAPABILITYSET
data byte data to be parsed
리턴 TS_BITMAP_CAPABILITYSET
        private TS_BITMAP_CAPABILITYSET ParseCapsTypeBitmap(byte[] data)
        {
            TS_BITMAP_CAPABILITYSET set = RdpbcgrUtility.ToStruct<TS_BITMAP_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