SensorbergSDK.Internal.Transport.ResolvedAction.Equals C# (CSharp) Method

Equals() private method

private Equals ( ResolvedAction other ) : bool
other ResolvedAction
return bool
        private bool Equals(ResolvedAction other)
        {
            return (!_beaconPids?.Except(other._beaconPids).GetEnumerator().MoveNext()).Value && Equals(BeaconAction.ToString(), other.BeaconAction.ToString()) && EventTypeDetectedByDevice == other.EventTypeDetectedByDevice &&
                   Delay == other.Delay && SendOnlyOnce == other.SendOnlyOnce && SuppressionTime == other.SuppressionTime && ReportImmediately == other.ReportImmediately &&
                   (!Timeframes?.Except(other.Timeframes).GetEnumerator().MoveNext()).Value;
        }

Same methods

ResolvedAction::Equals ( object obj ) : bool