SensorbergSDK.BeaconAction.Equals C# (CSharp) Méthode

Equals() private méthode

private Equals ( BeaconAction other ) : bool
other BeaconAction
Résultat 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