public void Update(DestinyProfileTransitoryComponent?other)
 {
     if (other is null)
     {
         return;
     }
     if (!PartyMembers.DeepEqualsList(other.PartyMembers))
     {
         PartyMembers = other.PartyMembers;
         OnPropertyChanged(nameof(PartyMembers));
     }
     if (!CurrentActivity.DeepEquals(other.CurrentActivity))
     {
         CurrentActivity.Update(other.CurrentActivity);
         OnPropertyChanged(nameof(CurrentActivity));
     }
     if (!Joinability.DeepEquals(other.Joinability))
     {
         Joinability.Update(other.Joinability);
         OnPropertyChanged(nameof(Joinability));
     }
     if (!Tracking.DeepEqualsList(other.Tracking))
     {
         Tracking = other.Tracking;
         OnPropertyChanged(nameof(Tracking));
     }
     if (LastOrbitedDestinationHash != other.LastOrbitedDestinationHash)
     {
         LastOrbitedDestinationHash = other.LastOrbitedDestinationHash;
         OnPropertyChanged(nameof(LastOrbitedDestinationHash));
     }
 }
        public bool Equals(DestinyProfileTransitoryComponent input)
        {
            if (input == null)
            {
                return(false);
            }

            return
                ((
                     PartyMembers == input.PartyMembers ||
                     (PartyMembers != null && PartyMembers.SequenceEqual(input.PartyMembers))
                     ) &&
                 (
                     CurrentActivity == input.CurrentActivity ||
                     (CurrentActivity != null && CurrentActivity.Equals(input.CurrentActivity))
                 ) &&
                 (
                     Joinability == input.Joinability ||
                     (Joinability != null && Joinability.Equals(input.Joinability))
                 ) &&
                 (
                     Tracking == input.Tracking ||
                     (Tracking != null && Tracking.SequenceEqual(input.Tracking))
                 ) &&
                 (
                     LastOrbitedDestinationHash == input.LastOrbitedDestinationHash ||
                     (LastOrbitedDestinationHash.Equals(input.LastOrbitedDestinationHash))
                 ));
        }
 public bool DeepEquals(DestinyProfileTransitoryComponent?other)
 {
     return(other is not null &&
            PartyMembers.DeepEqualsList(other.PartyMembers) &&
            (CurrentActivity is not null ? CurrentActivity.DeepEquals(other.CurrentActivity) : other.CurrentActivity is null) &&
            (Joinability is not null ? Joinability.DeepEquals(other.Joinability) : other.Joinability is null) &&
            Tracking.DeepEqualsList(other.Tracking) &&
            LastOrbitedDestinationHash == other.LastOrbitedDestinationHash);
 }
Beispiel #4
0
 public void SetJoinInProgress(Joinability value)
 {
     throw new NotImplementedException();
 }