Apache.NMS.ActiveMQ.Transport.TransportFilter.Narrow C# (CSharp) 메소드

Narrow() 공개 메소드

public Narrow ( Type type ) : Object
type System.Type
리턴 Object
        public Object Narrow(Type type)
        {
            if( this.GetType().Equals( type ) ) {
                return this;
            } else if( this.next != null ) {
                return this.next.Narrow( type );
            }

            return null;
        }