Click or drag to resize
IMongoCollection<TDocument>.ReplaceOneAsync Method
Replaces a single document.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
Task<ReplaceOneResult> ReplaceOneAsync(
	FilterDefinition<TDocument> filter,
	TDocument replacement,
	UpdateOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

filter
Type: MongoDB.Driver.FilterDefinition<TDocument>
The filter.
replacement
Type: TDocument
The replacement.
options (Optional)
Type: MongoDB.Driver.UpdateOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<ReplaceOneResult>
The result of the replacement.
See Also