internal Destination(Destination other) { this.queue = other.queue; destinationName = other.destinationName; connection = other.connection; }
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)); }