NServiceBus.Unicast.Transport.RabbitMQ.RabbitMqAddress.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : Int32
return System.Int32
    public override Int32 GetHashCode()
    {
      var hashCode = _broker.GetHashCode();
      hashCode = (hashCode * 397) ^ _exchange.GetHashCode();
      hashCode = (hashCode * 397) ^ _routingKey.GetHashCode();
      return hashCode;
    }