Apache.NMS.ActiveMQ.Transport.TransportFilter.TransportFilter C# (CSharp) Метод

TransportFilter() публичный Метод

public TransportFilter ( ITransport next ) : System
next ITransport
Результат System
        public TransportFilter(ITransport next)
        {
            this.next = next;
            this.next.Command = new CommandHandler(OnCommand);
            this.next.Exception = new ExceptionHandler(OnException);
            this.next.Interrupted = new InterruptedHandler(OnInterrupted);
            this.next.Resumed = new ResumedHandler(OnResumed);
        }