NServiceBus.Unicast.Transport.RabbitMQ.RabbitMqAddress.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( RabbitMqAddress other ) : bool
other RabbitMqAddress
Résultat bool
    public bool Equals(RabbitMqAddress other)
    {
      if (ReferenceEquals(null, other)) return false;
      if (ReferenceEquals(this, other)) return true;
      return Equals(other._broker, _broker) && Equals(other._exchange, _exchange) && Equals(other._routingKey, _routingKey);
    }

Same methods

RabbitMqAddress::Equals ( object obj ) : bool