/// <summary> /// Compares two id tag infos for equality. /// </summary> /// <param name="SOAPHeader">An id tag info to compare with.</param> /// <returns>True if both match; False otherwise.</returns> public Boolean Equals(SOAPHeader SOAPHeader) { if ((Object)SOAPHeader == null) { return(false); } return(ChargeBoxIdentity.Equals(SOAPHeader.ChargeBoxIdentity) && Action.Equals(SOAPHeader.Action) && MessageId.Equals(SOAPHeader.MessageId) && ((RelatesTo == null && SOAPHeader.RelatesTo == null) || (RelatesTo != null && SOAPHeader.RelatesTo != null && RelatesTo.Equals(SOAPHeader.RelatesTo))) && From.Equals(SOAPHeader.From) && To.Equals(SOAPHeader.To)); }
/// <summary> /// Returns true if Activity instances are equal /// </summary> /// <param name="other">Instance of Activity to be compared</param> /// <returns>Boolean</returns> public bool Equals(Activity other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Type == other.Type || Type != null && Type.Equals(other.Type) ) && ( Id == other.Id || Id != null && Id.Equals(other.Id) ) && ( Timestamp == other.Timestamp || Timestamp != null && Timestamp.Equals(other.Timestamp) ) && ( LocalTimestamp == other.LocalTimestamp || LocalTimestamp != null && LocalTimestamp.Equals(other.LocalTimestamp) ) && ( ServiceUrl == other.ServiceUrl || ServiceUrl != null && ServiceUrl.Equals(other.ServiceUrl) ) && ( ChannelId == other.ChannelId || ChannelId != null && ChannelId.Equals(other.ChannelId) ) && ( From == other.From || From != null && From.Equals(other.From) ) && ( Conversation == other.Conversation || Conversation != null && Conversation.Equals(other.Conversation) ) && ( Recipient == other.Recipient || Recipient != null && Recipient.Equals(other.Recipient) ) && ( TextFormat == other.TextFormat || TextFormat != null && TextFormat.Equals(other.TextFormat) ) && ( AttachmentLayout == other.AttachmentLayout || AttachmentLayout != null && AttachmentLayout.Equals(other.AttachmentLayout) ) && ( MembersAdded == other.MembersAdded || MembersAdded != null && MembersAdded.SequenceEqual(other.MembersAdded) ) && ( MembersRemoved == other.MembersRemoved || MembersRemoved != null && MembersRemoved.SequenceEqual(other.MembersRemoved) ) && ( TopicName == other.TopicName || TopicName != null && TopicName.Equals(other.TopicName) ) && ( HistoryDisclosed == other.HistoryDisclosed || HistoryDisclosed != null && HistoryDisclosed.Equals(other.HistoryDisclosed) ) && ( Locale == other.Locale || Locale != null && Locale.Equals(other.Locale) ) && ( Text == other.Text || Text != null && Text.Equals(other.Text) ) && ( Speak == other.Speak || Speak != null && Speak.Equals(other.Speak) ) && ( InputHint == other.InputHint || InputHint != null && InputHint.Equals(other.InputHint) ) && ( Summary == other.Summary || Summary != null && Summary.Equals(other.Summary) ) && ( SuggestedActions == other.SuggestedActions || SuggestedActions != null && SuggestedActions.Equals(other.SuggestedActions) ) && ( Attachments == other.Attachments || Attachments != null && Attachments.SequenceEqual(other.Attachments) ) && ( Entities == other.Entities || Entities != null && Entities.SequenceEqual(other.Entities) ) && ( ChannelData == other.ChannelData || ChannelData != null && ChannelData.Equals(other.ChannelData) ) && ( Action == other.Action || Action != null && Action.Equals(other.Action) ) && ( ReplyToId == other.ReplyToId || ReplyToId != null && ReplyToId.Equals(other.ReplyToId) ) && ( Value == other.Value || Value != null && Value.Equals(other.Value) ) && ( Name == other.Name || Name != null && Name.Equals(other.Name) ) && ( RelatesTo == other.RelatesTo || RelatesTo != null && RelatesTo.Equals(other.RelatesTo) ) && ( Code == other.Code || Code != null && Code.Equals(other.Code) )); }