Click or drag to resize
GridFSBucket.FindAsync Method
Finds matching entries from the files collection.

Namespace: MongoDB.Driver.GridFS
Assembly: MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.2.0
Syntax
public 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.

Implements

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