Couchbase.Search.Queries.Simple.RegexpQuery.Field C# (CSharp) 메소드

Field() 공개 메소드

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.
리턴 RegexpQuery
        public RegexpQuery Field(string field)
        {
            _field = field;
            return this;
        }