IFileEntityAsyncEnumerator Interface

Definition

Provides a method to enumerate the next entry discovered by the service.

public interface class IFileEntityAsyncEnumerator : Microsoft::VisualStudio::Threading::IAsyncDisposable
public interface IFileEntityAsyncEnumerator : Microsoft.VisualStudio.Threading.IAsyncDisposable
type IFileEntityAsyncEnumerator = interface
    interface IAsyncDisposable
Public Interface IFileEntityAsyncEnumerator
Implements IAsyncDisposable
Derived
Implements

Properties

Current

Gets the current element of the enumeration. The returned value is undefined before the first call to MoveNextAsync(CancellationToken) and following a call to MoveNext that returned false. Multiple calls to Current with no intervening calls to MoveNextAsync(CancellationToken) will return the same object.

IsValid

Gets whether the enumerator is still valid or needs to be Reset(). When it's invalid, it means that the enumerator items changed.

Methods

DisposeAsync()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.

(Inherited from IAsyncDisposable)
IsInEnumerationAsync(FileEntity, CancellationToken)

Gets a value that indicates whether the given entity exists in the current enumeration.

MoveNextAsync(CancellationToken)

Returns the next file or folder in the enumeration. This method can be called from any thread but only one thread can call it at any one time.

Reset()

Restart the enumeration from the beginning with an up to date list of items to enumerate.

Events

Invalidated

Occurs when the enumerator items changed and that the enumerator needs to be Reset().

Applies to