Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpegfx.RFX_Progressive_SYNC.RFX_Progressive_SYNC C# (CSharp) Method

RFX_Progressive_SYNC() public method

Constructor, create RFX_Progressive_SYNC block.
public RFX_Progressive_SYNC ( ushort codecVersion ) : System
codecVersion ushort This is used to indicate codec version.
return System
        public RFX_Progressive_SYNC(ushort codecVersion)
        {
            this.blockType = RFXProgCodecBlockType.WBT_SYNC;
            this.blockLen = 6 + 6;  // Common part 6 bytes, sync block specific: 6 bytes.
            this.magic = RFX_Progressive_CONST.SYNC_MAGIC;
            this.version = codecVersion;
        }