Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpedyc.DynamicVirtualChannel.DynamicVirtualChannel C# (CSharp) Method

DynamicVirtualChannel() public method

public DynamicVirtualChannel ( UInt32 channelId, string channelName, ushort priority, IDVCTransport transport ) : System
channelId System.UInt32
channelName string
priority ushort
transport IDVCTransport
return System
        public DynamicVirtualChannel(UInt32 channelId, string channelName, ushort priority, IDVCTransport transport)
        {
            this.channelId = channelId;
            this.channelName = channelName;
            this.priority = priority;
            this.transport = transport;

            pduBuilder = new PduBuilder();
            IsActive = true;
        }