C# Class Couchbase.Search.Queries.Simple.RegexpQuery

Regexp query finds documents containing terms that match the specified regular expression.
Inheritance: FtsQueryBase
Afficher le fichier Open project: couchbase/couchbase-net-client Class Usage Examples

Méthodes publiques

Méthode Description
Export ( ) : Newtonsoft.Json.Linq.JObject
Field ( string field ) : RegexpQuery

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.

RegexpQuery ( string regex ) : System

Initializes a new instance of the RegexpQuery class.

Method Details

Export() public méthode

public Export ( ) : Newtonsoft.Json.Linq.JObject
Résultat Newtonsoft.Json.Linq.JObject

Field() public méthode

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.
Résultat RegexpQuery

RegexpQuery() public méthode

Initializes a new instance of the RegexpQuery class.
regex
public RegexpQuery ( string regex ) : System
regex string The regexp to be analyzed and used against. The regexp string is required.
Résultat System