IDeferredQuery<T> Interface

Definition

IDeferredQuery interface

generic <typename T>
public interface class IDeferredQuery : IDisposable, Microsoft::VisualStudio::Workspace::Async::IAsyncEnumerable<T>
public interface IDeferredQuery<out T> : IDisposable, Microsoft.VisualStudio.Workspace.Async.IAsyncEnumerable<out T>
type IDeferredQuery<'T> = interface
    interface IAsyncEnumerable<'T>
    interface IDisposable
Public Interface IDeferredQuery(Of Out T)
Implements IAsyncEnumerable(Of Out T), IDisposable

Type Parameters

T

Type of the item

This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Implements

Methods

GetEnumerator()

Returns an enumerator that supports asynchronous iterates through a collection.

(Inherited from IAsyncEnumerable<T>)

Applies to