Example #1
0
 public TermClause(string field, string value, TermClauseType type, float boost)
     : this(field, value, boost)
 {
     this.Type = type;
 }
Example #2
0
 public TermClause(string field, string value, TermClauseType type, bool isRequired, bool isExcluded)
     : this(field, value, isRequired, isExcluded)
 {
     this.Type = type;
 }