BaseLuceneSearchProvider.Match Method (String, Double, Int32) |
Gets results that match the given query with the score threshold and limit applied.
Namespace:
VDS.RDF.Query.FullText.Search.Lucene
Assembly:
dotNetRDF.Query.FullText (in dotNetRDF.Query.FullText.dll) Version:
Syntaxpublic virtual IEnumerable<IFullTextSearchResult> Match(
string text,
double scoreThreshold,
int limit
)
Public Overridable Function Match (
text As String,
scoreThreshold As Double,
limit As Integer
) As IEnumerable(Of IFullTextSearchResult)
Parameters
- text
- Type: System.String
Search Query. - scoreThreshold
- Type: System.Double
Score Threshold. - limit
- Type: System.Int32
Result Limit.
Return Value
Type:
IEnumerable<IFullTextSearchResult>[Missing <returns> documentation for "M:VDS.RDF.Query.FullText.Search.Lucene.BaseLuceneSearchProvider.Match(System.String,System.Double,System.Int32)"]
Implements
IFullTextSearchProvider.Match(String, Double, Int32)
See Also