Exemple #1
0
        public bool Evaluate(IDataDescriptor source, out IDataDescriptor result)
        {
            DataDescriptorRepeater ddr = new DataDescriptorRepeater
            {
                SourceValue = source,
                Negate      = true
            };

            result = ddr;
            return(true);
        }
Exemple #2
0
 /// <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);
 }