IMongoCollectionTDocumentFindSyncTProjection Method (IClientSessionHandle, FilterDefinitionTDocument, FindOptionsTDocument, TProjection, CancellationToken) |
Finds the documents matching the filter.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax IAsyncCursor<TProjection> FindSync<TProjection>(
IClientSessionHandle session,
FilterDefinition<TDocument> filter,
FindOptions<TDocument, TProjection> options = null,
CancellationToken cancellationToken = null
)
Function FindSync(Of TProjection) (
session As IClientSessionHandle,
filter As FilterDefinition(Of TDocument),
Optional options As FindOptions(Of TDocument, TProjection) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As IAsyncCursor(Of TProjection)
abstract FindSync :
session : IClientSessionHandle *
filter : FilterDefinition<'TDocument> *
?options : FindOptions<'TDocument, 'TProjection> *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken null
*)
-> IAsyncCursor<'TProjection>
Parameters
- session
- Type: MongoDB.DriverIClientSessionHandle
The session. - filter
- Type: MongoDB.DriverFilterDefinitionTDocument
The filter. - options (Optional)
- Type: MongoDB.DriverFindOptionsTDocument, TProjection
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Type Parameters
- TProjection
- The type of the projection (same as TDocument if there is no projection).
Return Value
Type:
IAsyncCursorTProjection
A cursor.
See Also