The Frame Marker Command is used to group multiple surface commands so that these commands can be processed and presented to the user as a single entity, a frame.
Inheritance: TS_SURFCMD
Exemplo n.º 1
0
 private byte[] EncodeSurfFrameMaker(TS_FRAME_MARKER frameMakerData)
 {
     List<byte> buffer = new List<byte>();
     RdpbcgrEncoder.EncodeStructure(buffer, (ushort)frameMakerData.cmdType);
     RdpbcgrEncoder.EncodeStructure(buffer, (ushort)frameMakerData.frameAction);
     RdpbcgrEncoder.EncodeStructure(buffer, frameMakerData.frameId);
     return buffer.ToArray();
 }