Table of Contents

Class DeleteResult.Acknowledged

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

The result of an acknowledged delete operation.

public class DeleteResult.Acknowledged : DeleteResult
Inheritance
DeleteResult.Acknowledged
Inherited Members

Constructors

Acknowledged(long)

Initializes a new instance of the DeleteResult.Acknowledged class.

public Acknowledged(long deletedCount)

Parameters

deletedCount long

The deleted count.

Properties

DeletedCount

Gets the deleted count. If IsAcknowledged is false, this will throw an exception.

public override long DeletedCount { get; }

Property Value

long

IsAcknowledged

Gets a value indicating whether the result is acknowledged.

public override bool IsAcknowledged { get; }

Property Value

bool