Searches all providers and render the HTML by provider templates.

Namespace: MonoSoftware.MonoX.SearchEngine
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public string SearchAndRender(
	string searchPhrase,
	Hashtable searchParams,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Public Function SearchAndRender ( 
	searchPhrase As String,
	searchParams As Hashtable,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As String
Visual C++
public:
String^ SearchAndRender(
	String^ searchPhrase, 
	Hashtable^ searchParams, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
member SearchAndRender : 
        searchPhrase : string * 
        searchParams : Hashtable * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> string 

Parameters

searchPhrase
Type: System..::..String
Search phrase
searchParams
Type: System.Collections..::..Hashtable
Search params
pageIndex
Type: System..::..Int32
Page index.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Record count.

Return Value

Type: String
Rendered HTML

See Also