SensorbergSDK.BeaconAction.Equals C# (CSharp) Method

Equals() private method

private Equals ( BeaconAction other ) : bool
other BeaconAction
return bool
        private bool Equals(BeaconAction other)
        {
            return Id == other.Id && Type == other.Type && string.Equals(Uuid, other.Uuid) && string.Equals(Subject, other.Subject) && string.Equals(Body, other.Body) &&
                   string.Equals(Url, other.Url) && Equals(Payload?.ToString(), other.Payload?.ToString());
        }

Same methods

BeaconAction::Equals ( object obj ) : bool