'Declaration
<HttpGetAttribute()> <PathRouteAttribute("{*reportPath}$instances/{instanceId}/search")> Public Overridable Function GetInstanceSearchResults( _ ByVal reportPath As String, _ ByVal instanceId As String, _ ByVal text As String, _ Optional ByVal matchCase As Boolean, _ Optional ByVal wholeWord As Boolean, _ Optional ByVal startPageIndex As Integer, _ Optional ByVal scope As SearchScope _ ) As IActionResult
[HttpGet()] [PathRoute("{*reportPath}$instances/{instanceId}/search")] public virtual IActionResult GetInstanceSearchResults( string reportPath, string instanceId, string text, bool matchCase, bool wholeWord, int startPageIndex, SearchScope scope )
Parameters
- reportPath
- The full path of the report.
- instanceId
- The report instance id.
- text
- The text used to be searched.
- matchCase
- A boolean value indicates if search the value with case sensitive.
- wholeWord
- A boolean value indicates if search the value with matching a whole word.
- startPageIndex
- 0-based index of the first page to search.
- scope
- The search scope.
Return Value
An Microsoft.AspNetCore.Mvc.IActionResult type object with content of collection of C1.Web.Api.Document.Models.SearchResult type object.