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

SendDVCCreateRequestPDU() private méthode

Send a Create Request PDU
private SendDVCCreateRequestPDU ( ushort priority, uint channelId, string channelName, DynamicVC_TransportType transportType ) : void
priority ushort Priority
channelId uint Channel ID
channelName string Channel Name
transportType DynamicVC_TransportType Transport type
Résultat void
        private void SendDVCCreateRequestPDU(ushort priority, uint channelId, string channelName, DynamicVC_TransportType transportType)
        {
            CreateReqDvcPdu pdu = pduBuilder.CreateCreateReqDvcPdu(priority, channelId, channelName);
            this.Send(pdu, transportType);
        }