IVsAsyncEnumCallback Interface
Interface describing the callback method for an asynchronous enumerator uses to indicate the next item is available. You set the callback using the AdviseAsyncEnumCallback method of the IVsAsyncEnum interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<InterfaceTypeAttribute()> _
<GuidAttribute("EE559C3D-0189-4F81-B088-C6CC6A394CA1")> _
Public Interface IVsAsyncEnumCallback
[InterfaceTypeAttribute()]
[GuidAttribute("EE559C3D-0189-4F81-B088-C6CC6A394CA1")]
public interface IVsAsyncEnumCallback
[InterfaceTypeAttribute()]
[GuidAttribute(L"EE559C3D-0189-4F81-B088-C6CC6A394CA1")]
public interface class IVsAsyncEnumCallback
[<InterfaceTypeAttribute()>]
[<GuidAttribute("EE559C3D-0189-4F81-B088-C6CC6A394CA1")>]
type IVsAsyncEnumCallback = interface end
public interface IVsAsyncEnumCallback
The IVsAsyncEnumCallback type exposes the following members.
Methods
Name | Description | |
---|---|---|
OnDataAvailable | Event fired when data is available without blocking. |
Top