public bool Evaluate(IDataDescriptor source, out IDataDescriptor result) { DataDescriptorRepeater ddr = new DataDescriptorRepeater { SourceValue = source, Negate = true }; result = ddr; return(true); }
/// <summary> /// Returns the information if the specified <paramref name="other"/> descriptor /// is based on the same underlaying target descriptor. /// </summary> /// <param name="other">Other descriptor whose target descriptor should be compared.</param> public bool TargetEquals(DataDescriptorRepeater other) { return(_value.Equals(other._value)); }
/// <summary> /// Returns the information if the specified <paramref name="other"/> descriptor /// is based on the same underlaying target descriptor. /// </summary> /// <param name="other">Other descriptor whose target descriptor should be compared.</param> public bool TargetEquals(DataDescriptorRepeater other) { return _value.Equals(other._value); }