IGridFSBucketFindAsync 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.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
SyntaxTask<IAsyncCursor<GridFSFileInfo>> FindAsync(
	FilterDefinition<GridFSFileInfo> filter,
	GridFSFindOptions options = null,
	CancellationToken cancellationToken = default
)
Function FindAsync ( 
	filter As FilterDefinition(Of GridFSFileInfo),
	Optional options As GridFSFindOptions = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IAsyncCursor(Of GridFSFileInfo))
abstract FindAsync : 
        filter : FilterDefinition<GridFSFileInfo> * 
        ?options : GridFSFindOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IAsyncCursor<GridFSFileInfo>> 
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: 
TaskIAsyncCursorGridFSFileInfoA Task whose result is a cursor of files collection documents.
See Also