CreateDataCompressedReqPdu() public méthode

Create DYNVC_DATA_COMPRESSED
public CreateDataCompressedReqPdu ( uint channelId, byte data ) : DataCompressedDvcPdu
channelId uint
data byte
Résultat DataCompressedDvcPdu
        private void SendDataCompressedReqPdu(uint channelId, byte[] data, DynamicVC_TransportType transportType)
        {
            DataCompressedDvcPdu pdu = pduBuilder.CreateDataCompressedReqPdu(channelId, data);

            Send(pdu, transportType);
        }
        public void SendDataCompressedReqPdu(uint channelId, byte[] data)
        {
            DataCompressedDvcPdu pdu = pduBuilder.CreateDataCompressedReqPdu(channelId, data);

            Send(pdu, DynamicVC_TransportType.RDP_UDP_Reliable);
        }