internal Destination(Destination other)
 {
     this.queue      = other.queue;
     destinationName = other.destinationName;
     connection      = other.connection;
 }
Exemplo n.º 2
0
 protected MessageLink(Session ses, Destination dest)
 {
     session     = ses;
     destination = dest;
 }
 public virtual bool Equals(Destination other)
 {
     return(this.DestinationType == other.DestinationType && this.destinationName.Equals(other.destinationName));
 }