Rocket.Chat.Net.Models.Attachment.Equals C# (CSharp) Méthode

Equals() protected méthode

protected Equals ( Attachment other ) : bool
other Attachment
Résultat bool
        protected bool Equals(Attachment other)
        {
            return string.Equals(Title, other.Title) && string.Equals(TitleLink, other.TitleLink) && TitleLinkDownloadable == other.TitleLinkDownloadable
                   && string.Equals(Text, other.Text) && string.Equals(ImageUrl, other.ImageUrl) && string.Equals(AuthorName, other.AuthorName)
                   && string.Equals(AuthorIcon, other.AuthorIcon) && string.Equals(ThumbUrl, other.ThumbUrl) && string.Equals(Color, other.Color)
                   && Timestamp.Equals(other.Timestamp);
        }

Same methods

Attachment::Equals ( object obj ) : bool