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.
Provides typed enumeration methods.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Public Interface IComEnumeratorRelay(Of TComEnumerator, TEnumerated)
public interface IComEnumeratorRelay<TComEnumerator, TEnumerated>
generic<typename TComEnumerator, typename TEnumerated>
public interface class IComEnumeratorRelay
type IComEnumeratorRelay<'TComEnumerator, 'TEnumerated> = interface end
JScript does not support generic types or methods.
Type Parameters
- TComEnumerator
A COM enumerator type (e.g. IEnumString).
- TEnumerated
The type of the enumerator.
The IComEnumeratorRelay<TComEnumerator, TEnumerated> type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
Clone | Clones the enumerator. |
![]() |
NextItems | Gets the next chunk of items. |
![]() |
Reset | Resets the enumerator. |
![]() |
Skip | Skips the specified number of items. |
Top