Share via


BestBetCollection.GetEnumerator Method (BestBetSortField, SortDirection, Int32, Int32)

Retrieves an enumerator for a subset of the the best bet in the collection, sorting on the specified field in the specified direction.

Namespace:  Microsoft.SharePoint.Search.Extended.Administration.Keywords
Assembly:  Microsoft.SharePoint.Search.Extended.Administration (in Microsoft.SharePoint.Search.Extended.Administration.dll)

Syntax

'Declaration
Function GetEnumerator ( _
    sortField As BestBetSortField, _
    sortDirection As SortDirection, _
    offset As Integer, _
    count As Integer _
) As IEnumerator(Of BestBet)
'Usage
Dim instance As BestBetCollection
Dim sortField As BestBetSortField
Dim sortDirection As SortDirection
Dim offset As Integer
Dim count As Integer
Dim returnValue As IEnumerator(Of BestBet)

returnValue = instance.GetEnumerator(sortField, _
    sortDirection, offset, count)
IEnumerator<BestBet> GetEnumerator(
    BestBetSortField sortField,
    SortDirection sortDirection,
    int offset,
    int count
)

Parameters

  • offset
    Type: System.Int32

    The offset in the result set from which values are returned.

  • count
    Type: System.Int32

    The number of elements to return.

Return Value

Type: System.Collections.Generic.IEnumerator<BestBet>
An [IEnumerator] over the BestBets.

Remarks

The count and offset values are applied to the result after sorting on the specified field in the specified direction. This can be used for paging in a GUI

See Also

Reference

BestBetCollection Interface

BestBetCollection Members

GetEnumerator Overload

Microsoft.SharePoint.Search.Extended.Administration.Keywords Namespace