Click or drag to resize

GridFSBucket.Find 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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public IAsyncCursor<GridFSFileInfo> Find(
	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: IAsyncCursor<GridFSFileInfo>
A cursor of files collection documents.

Implements

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