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.
Gets the enumeration helper for the QueryOperationResponse.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Protected Function GetEnumeratorHelper(Of T As IEnumerator) ( _
getEnumerator As Func(Of T) _
) As T
'Usage
Dim getEnumerator As Func(Of T)
Dim returnValue As T
returnValue = Me.GetEnumeratorHelper(getEnumerator)
protected T GetEnumeratorHelper<T>(
Func<T> getEnumerator
)
where T : IEnumerator
protected:
generic<typename T>
where T : IEnumerator
T GetEnumeratorHelper(
Func<T>^ getEnumerator
)
member GetEnumeratorHelper :
getEnumerator:Func<'T> -> 'T when 'T : IEnumerator
JScript does not support generic types and methods.
Type Parameters
- T
The generic type.
Parameters
- getEnumerator
Type: System.Func<T>
The enumerator.
Return Value
Type: T