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

ParseCapsTypeBrush() 개인적인 메소드

Parse TS_BRUSH_CAPABILITYSET
private ParseCapsTypeBrush ( byte data ) : TS_BRUSH_CAPABILITYSET
data byte data to be parsed
리턴 TS_BRUSH_CAPABILITYSET
        private TS_BRUSH_CAPABILITYSET ParseCapsTypeBrush(byte[] data)
        {
            TS_BRUSH_CAPABILITYSET set = RdpbcgrUtility.ToStruct<TS_BRUSH_CAPABILITYSET>(data);

            VerifyDataLength(data.Length, Marshal.SizeOf(set), ConstValue.ERROR_MESSAGE_DATA_LENGTH_INCONSISTENT);
            return set;
        }
RdpbcgrServerDecoder