Skip to main content

Commands: StreamFileHeadersAsync

Syntax

#Commands: StreamFileHeadersAsync

StreamFileHeadersAsync is used to stream the headers of files which match the criteria chosen from a file system.

Task<IAsyncEnumerator<FileHeader>> StreamFileHeadersAsync(Etag fromEtag, int pageSize = int.MaxValue);
Parameters
fromEtagEtagETag of a file from which the stream should start
pageSizeintThe maximum number of file headers that will be retrieved

Return Value
Task<IAsyncEnumerator<FileHeader>>A task that represents the asynchronous operation. The task result is the enumerator of FileHeaders objects.

Example

using (var reader = await store.AsyncFilesCommands.StreamFileHeadersAsync(Etag.Empty))
{
while (await reader.MoveNextAsync())
{
FileHeader header = reader.Current;
}
}