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

Send() public méthode

Send a PDU using a specific transport
public Send ( DynamicVCPDU pdu, DynamicVC_TransportType transportType ) : void
pdu DynamicVCPDU
transportType DynamicVC_TransportType
Résultat void
        public void Send(DynamicVCPDU pdu, DynamicVC_TransportType transportType)
        {
            if (!transportDic.ContainsKey(transportType))
            {
                throw new InvalidOperationException("Not create DVC transport:" + transportType);
            }
            transportDic[transportType].Send(pdu);
        }