Click or drag to resize
MongoCollectionBaseTDocumentReplaceOneAsync Method
Replaces a single document.

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

Parameters

filter
Type: MongoDB.DriverFilterDefinitionTDocument
The filter.
replacement
Type: TDocument
The replacement.
options (Optional)
Type: MongoDB.DriverUpdateOptions
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskReplaceOneResult
The result of the replacement.

Implements

IMongoCollectionTDocumentReplaceOneAsync(FilterDefinitionTDocument, TDocument, UpdateOptions, CancellationToken)
See Also