NServiceBus.InMemoryOutboxStorage.StoredMessage.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( StoredMessage other ) : bool
other StoredMessage
return bool
            protected bool Equals(StoredMessage other)
            {
                return string.Equals(Id, other.Id) && Dispatched.Equals(other.Dispatched);
            }

Same methods

InMemoryOutboxStorage.StoredMessage::Equals ( object obj ) : bool