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;
        }
        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;
        }