GlobalSearchHelperSearch Method |
Searches system for specified search string.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static GlobalSearchResultItem[] Search(
string searchString,
string[] objectsToSearch,
int startRecord,
int itemsPerPage,
out int totalResultsCount
)
Public Shared Function Search (
searchString As String,
objectsToSearch As String(),
startRecord As Integer,
itemsPerPage As Integer,
<OutAttribute> ByRef totalResultsCount As Integer
) As GlobalSearchResultItem()
public:
static array<GlobalSearchResultItem^>^ Search(
String^ searchString,
array<String^>^ objectsToSearch,
int startRecord,
int itemsPerPage,
[OutAttribute] int% totalResultsCount
)
static member Search :
searchString : string *
objectsToSearch : string[] *
startRecord : int *
itemsPerPage : int *
totalResultsCount : int byref -> GlobalSearchResultItem[]
Parameters
- searchString
- Type: SystemString
The search string. - objectsToSearch
- Type: SystemString
Objects to search through. - startRecord
- Type: SystemInt32
Ordinal number of starting record. - itemsPerPage
- Type: SystemInt32
Items per page. - totalResultsCount
- Type: SystemInt32
Number of total results.
Return Value
Type:
GlobalSearchResultItemArray of GlobalSearchResultItem objects which contain search results.
See Also