Method Find
Find(string)
Finds every occurrence of a term, with the default options.
public IReadOnlyList<ReportSearchHit> Find(string text)
Parameters
textstringThe term.
Returns
- IReadOnlyList<ReportSearchHit>
The hits, in report order.
Find(string, ReportSearchOptions?)
Finds every occurrence of a term.
public IReadOnlyList<ReportSearchHit> Find(string text, ReportSearchOptions? options)
Parameters
textstringThe term.
optionsReportSearchOptionsHow to match, or null for the defaults.
Returns
- IReadOnlyList<ReportSearchHit>
The hits, in report order.
Exceptions
- ArgumentNullException
textis null.