Interface IFullTextSearchProvider
Interface for classes that provide full text search capability.
Assembly: dotNetRDF.Query.FullText.dll
Syntax
public interface IFullTextSearchProvider
Properties
|
Improve this Doc
View Source
IsAutoSynced
Gets whether the search provider is automatically synced with the index i.e. whether queries will always return results based on the latest state of the index.
Declaration
bool IsAutoSynced { get; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Improve this Doc
View Source
Match(IEnumerable<Uri>, String)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(IEnumerable<Uri> graphUris, String text)
Parameters
Type |
Name |
Description |
IEnumerable<Uri> |
graphUris |
Graph URIs. |
String |
text |
Search Query. |
Returns
|
Improve this Doc
View Source
Match(IEnumerable<Uri>, String, Double)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(IEnumerable<Uri> graphUris, String text, double scoreThreshold)
Parameters
Type |
Name |
Description |
IEnumerable<Uri> |
graphUris |
Graph URIs. |
String |
text |
Search Query. |
System.Double |
scoreThreshold |
Score Threshold. |
Returns
|
Improve this Doc
View Source
Match(IEnumerable<Uri>, String, Double, Int32)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(IEnumerable<Uri> graphUris, String text, double scoreThreshold, int limit)
Parameters
Type |
Name |
Description |
IEnumerable<Uri> |
graphUris |
Graph URIs. |
String |
text |
Search Query. |
System.Double |
scoreThreshold |
Score Threshold. |
System.Int32 |
limit |
Result Limit. |
Returns
|
Improve this Doc
View Source
Match(IEnumerable<Uri>, String, Int32)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(IEnumerable<Uri> graphUris, String text, int limit)
Parameters
Type |
Name |
Description |
IEnumerable<Uri> |
graphUris |
Graph URIs. |
String |
text |
Search Query. |
System.Int32 |
limit |
Result Limit. |
Returns
|
Improve this Doc
View Source
Match(String)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(String text)
Parameters
Type |
Name |
Description |
String |
text |
Search Query. |
Returns
|
Improve this Doc
View Source
Match(String, Double)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(String text, double scoreThreshold)
Parameters
Type |
Name |
Description |
String |
text |
Search Query. |
System.Double |
scoreThreshold |
Score Threshold. |
Returns
|
Improve this Doc
View Source
Match(String, Double, Int32)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(String text, double scoreThreshold, int limit)
Parameters
Type |
Name |
Description |
String |
text |
Search Query. |
System.Double |
scoreThreshold |
Score Threshold. |
System.Int32 |
limit |
Result Limit. |
Returns
|
Improve this Doc
View Source
Match(String, Int32)
Searches for matches for specific text.
Declaration
IEnumerable<IFullTextSearchResult> Match(String text, int limit)
Parameters
Type |
Name |
Description |
String |
text |
Search Query. |
System.Int32 |
limit |
Result Limit. |
Returns
Extension Methods