PageCommandsServicesQuickSearchPage Method
|
Searches Pages by the initial characters in their names
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[][]> QuickSearchPage(
string search,
string masterPageId,
bool includeLocale,
string[] excludeIds
)
Public Function QuickSearchPage (
search As String,
masterPageId As String,
includeLocale As Boolean,
excludeIds As String()
) As XHRServiceResponseGeneric(Of String()())
public:
virtual XHRServiceResponseGeneric<array<array<String^>^>^>^ QuickSearchPage(
String^ search,
String^ masterPageId,
bool includeLocale,
array<String^>^ excludeIds
) sealed
abstract QuickSearchPage :
search : string *
masterPageId : string *
includeLocale : bool *
excludeIds : string[] -> XHRServiceResponseGeneric<string[][]>
override QuickSearchPage :
search : string *
masterPageId : string *
includeLocale : bool *
excludeIds : string[] -> XHRServiceResponseGeneric<string[][]>
Parameters
- search
- Type: SystemString
Initial characters in Page names, not case-sensitive - masterPageId
- Type: SystemString
The Id of Master Page in a lingual map. This parameter is only needed when searching for Page that are available to map to the given master Page as clone. - includeLocale
- Type: SystemBoolean
Specifies whether to include Page's lingual information in the search results - excludeIds
- Type: SystemString
[Missing <param name="excludeIds"/> documentation for "M:IngeniuxCMService.PageCommandsServices.QuickSearchPage(System.String,System.String,System.Boolean,System.String[])"]
Return Value
Type:
XHRServiceResponseGenericStringArray of search result entries. Each entry is a 2 items string array. First item is the Page's name, includes lingual information is specified; Second item is the Page Id
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [
["HomeSlider (x33)", "x33"],
["HomeSlider (x51)", "x51"],
["HomeSlider (x69)", "x69"],
["HomeSlider (x31)", "x31"],
["HomeSlider (x17)", "x17"],
["Home (x5)", "x5"]]
}
See Also