Click or drag to resize

MongoCollectionBase<TDocument>.InsertOneAsync Method (IClientSessionHandle, TDocument, InsertOneOptions, CancellationToken)

Inserts a single document.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public virtual Task InsertOneAsync(
	IClientSessionHandle session,
	TDocument document,
	InsertOneOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

session
Type: MongoDB.Driver.IClientSessionHandle
The session.
document
Type: TDocument
The document.
options (Optional)
Type: MongoDB.Driver.InsertOneOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task
The result of the insert operation.

Implements

IMongoCollection<TDocument>.InsertOneAsync(IClientSessionHandle, TDocument, InsertOneOptions, CancellationToken)
See Also