IMongoCollectionTDocumentInsertOneAsync Method |
Inserts a single document.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.1.0
Syntax Task InsertOneAsync(
TDocument document,
CancellationToken cancellationToken = null
)
Function InsertOneAsync (
document As TDocument,
Optional cancellationToken As CancellationToken = Nothing
) As Task
abstract InsertOneAsync :
document : 'TDocument *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task
Parameters
- document
- Type: TDocument
The document. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
Task
The result of the insert operation.
See Also