SameIdAndChangeKey method
Implementation
bool SameIdAndChangeKey(ServiceId other) {
if (this == other) {
return ((this.ChangeKey == null) && (other.ChangeKey == null)) ||
this.ChangeKey == other.ChangeKey;
} else {
return false;
}
}