IMongoCollectionTDocumentInsertOneAsync Method (TDocument, InsertOneOptions, CancellationToken) | 
 
            Inserts a single document.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
SyntaxTask InsertOneAsync(
	TDocument document,
	InsertOneOptions options = null,
	CancellationToken cancellationToken = default
)
Function InsertOneAsync ( 
	document As TDocument,
	Optional options As InsertOneOptions = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
) As Task
abstract InsertOneAsync : 
        document : 'TDocument * 
        ?options : InsertOneOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task 
Parameters
- document
 - Type: TDocument
The document. - options (Optional)
 - Type: MongoDB.DriverInsertOneOptions
The options. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
Task
            The result of the insert operation.
            
See Also