DotLucene 1.4 API Documentation

WildcardQuery Class

Implements the wildcard search query. Supported wildcards are *, which matches any character sequence (including the empty one), and ?, which matches any single character. Note this query can be slow, as it needs to iterate over all terms. In order to prevent extremely slow WildcardQueries, a Wildcard term must not start with one of the wildcards * or ?.

For a list of all members of this type, see WildcardQuery Members.

System.Object
   Lucene.Net.Search.Query
      Lucene.Net.Search.MultiTermQuery
         Lucene.Net.Search.WildcardQuery

public class WildcardQuery : MultiTermQuery

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: Lucene.Net.Search

Assembly: Lucene.Net (in Lucene.Net.dll)

See Also

WildcardQuery Members | Lucene.Net.Search Namespace |