Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Issues a query with the specified search type, group, page, and page size.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
'Declaration
Protected Overridable Function IssueQuery ( _
search As String, _
groupName As String, _
pageIndex As Integer, _
pageSize As Integer _
) As Integer
'Usage
Dim search As String
Dim groupName As String
Dim pageIndex As Integer
Dim pageSize As Integer
Dim returnValue As Integer
returnValue = Me.IssueQuery(search, _
groupName, pageIndex, pageSize)
protected virtual int IssueQuery(
string search,
string groupName,
int pageIndex,
int pageSize
)
search
Type: System.StringThe search type to use.
groupName
Type: System.StringThe group against which to query.
pageIndex
Type: System.Int32The page to retrieve.
pageSize
Type: System.Int32The number of records per page.
Type: System.Int32
A data table that contains the rows for all the results.
This method is expected to be overridden by child classes. The base class implementation is empty and always returns zero.