Click or drag to resize

IGridFSBucket.FindAsync Method (FilterDefinition<GridFSFileInfo>, GridFSFindOptions, CancellationToken)

Finds matching entries from the files collection.

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

Parameters

filter
Type: MongoDB.Driver.FilterDefinition<GridFSFileInfo>
The filter.
options (Optional)
Type: MongoDB.Driver.GridFS.GridFSFindOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<IAsyncCursor<GridFSFileInfo>>
A Task whose result is a cursor of files collection documents.
See Also