Click or drag to resize

IMongoCollectionTDocumentReplaceOne Method (IClientSessionHandle, FilterDefinitionTDocument, TDocument, UpdateOptions, CancellationToken)

Note: This API is now obsolete.

Replaces a single document.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
[ObsoleteAttribute("Use the overload that takes a ReplaceOptions instead of an UpdateOptions.")]
ReplaceOneResult ReplaceOne(
	IClientSessionHandle session,
	FilterDefinition<TDocument> filter,
	TDocument replacement,
	UpdateOptions options,
	CancellationToken cancellationToken = null
)

Parameters

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

Return Value

Type: ReplaceOneResult
The result of the replacement.
See Also