Click or drag to resize

IChannel.DeleteAsync Method

Executes a Delete protocol.

Namespace:  MongoDB.Driver.Core.Bindings
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
Task<WriteConcernResult> DeleteAsync(
	CollectionNamespace collectionNamespace,
	BsonDocument query,
	bool isMulti,
	MessageEncoderSettings messageEncoderSettings,
	WriteConcern writeConcern,
	CancellationToken cancellationToken
)

Parameters

collectionNamespace
Type: MongoDB.Driver.CollectionNamespace
The collection namespace.
query
Type: MongoDB.Bson.BsonDocument
The query.
isMulti
Type: System.Boolean
if set to true all matching documents are deleted.
messageEncoderSettings
Type: MongoDB.Driver.Core.WireProtocol.Messages.Encoders.MessageEncoderSettings
The message encoder settings.
writeConcern
Type: MongoDB.Driver.WriteConcern
The write concern.
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<WriteConcernResult>
A Task whose result is the result of the Delete protocol.
See Also