Click or drag to resize

MongoCollectionBase<TDocument>.ReplaceOneAsync Method (FilterDefinition<TDocument>, TDocument, ReplaceOptions, CancellationToken)

Replaces a single document.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
public virtual Task<ReplaceOneResult> ReplaceOneAsync(
	FilterDefinition<TDocument> filter,
	TDocument replacement,
	ReplaceOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

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

Implements

IMongoCollection<TDocument>.ReplaceOneAsync(FilterDefinition<TDocument>, TDocument, ReplaceOptions, CancellationToken)
See Also