Couchbase.Search.Queries.Simple.RegexpQuery.Field C# (CSharp) Method

Field() public method

If a field is specified, only terms in that field will be matched. This can also affect the used analyzer if one isn't specified explicitly.
public Field ( string field ) : RegexpQuery
field string The field.
return RegexpQuery
        public RegexpQuery Field(string field)
        {
            _field = field;
            return this;
        }