コード例 #1
0
 public static EqualsQuerySpecification Equals(IFileMetadataProperty source, object comparand, bool not = false)
 {
     return new EqualsQuerySpecification(source, comparand, not);
 }
コード例 #2
0
 internal EqualsQuerySpecification(IFileMetadataProperty source, object comparand, bool not = false)
 {
     _source    = source;
     _comparand = comparand;
     _not       = not;
 }
コード例 #3
0
 internal EqualsQuerySpecification(IFileMetadataProperty source, object comparand, bool not = false)
 {
     _source = source;
     _comparand = comparand;
     _not = not;
 }
コード例 #4
0
 public static EqualsQuerySpecification Equals(IFileMetadataProperty source, object comparand, bool not = false)
 {
     return(new EqualsQuerySpecification(source, comparand, not));
 }