Table of Contents

Class DeleteResult

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

The result of a delete operation.

public abstract class DeleteResult
Inheritance
DeleteResult
Derived
Inherited Members

Constructors

DeleteResult()

Initializes a new instance of the DeleteResult class.

protected DeleteResult()

Properties

DeletedCount

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

public abstract long DeletedCount { get; }

Property Value

long

IsAcknowledged

Gets a value indicating whether the result is acknowledged.

public abstract bool IsAcknowledged { get; }

Property Value

bool