Click or drag to resize

IGridFSBucketFind Method (FilterDefinitionGridFSFileInfo, GridFSFindOptions, CancellationToken)

Finds matching entries from the files collection.

Namespace:  MongoDB.Driver.GridFS
Assembly:  MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
IAsyncCursor<GridFSFileInfo> Find(
	FilterDefinition<GridFSFileInfo> filter,
	GridFSFindOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: IAsyncCursorGridFSFileInfo
A cursor of files collection documents.
See Also