Click or drag to resize

IGridFSBucketTFileIdFindAsync Method

Finds matching entries from the files collection.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
Task<IAsyncCursor<GridFSFileInfo<TFileId>>> FindAsync(
	FilterDefinition<GridFSFileInfo<TFileId>> filter,
	GridFSFindOptions<TFileId> options = null,
	CancellationToken cancellationToken = null
)

Parameters

filter
Type: MongoDB.DriverFilterDefinitionGridFSFileInfoTFileId
The filter.
options (Optional)
Type: MongoDB.Driver.GridFSGridFSFindOptionsTFileId
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskIAsyncCursorGridFSFileInfoTFileId
A Task whose result is a cursor of files collection documents.
See Also