Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpedyc.RdpedycServer.SendSoftSyncRequestPDU C# (CSharp) Méthode

SendSoftSyncRequestPDU() private méthode

Send DYNVC_SOFT_SYNC_REQUEST PDU.
private SendSoftSyncRequestPDU ( SoftSyncReqFlags_Value flags, ushort numberOfTunnels, SoftSyncChannelList channelList = null, DynamicVC_TransportType transportType = DynamicVC_TransportType.RDP_TCP ) : void
flags SoftSyncReqFlags_Value
numberOfTunnels ushort
channelList SoftSyncChannelList
transportType DynamicVC_TransportType
Résultat void
        private void SendSoftSyncRequestPDU(SoftSyncReqFlags_Value flags, ushort numberOfTunnels = 0, SoftSyncChannelList[] channelList = null, DynamicVC_TransportType transportType = DynamicVC_TransportType.RDP_TCP)
        {
            SoftSyncReqDvcPDU pdu = pduBuilder.CreateSoftSyncReqPdu(flags, numberOfTunnels, channelList);
            this.Send(pdu, transportType);
        }