ItemMetadata.IsDeleted Property

When overridden in a derived class, gets or sets a value that indicates whether the item has been deleted from the item store.

Namespace:  Microsoft.Synchronization.MetadataStorage
Assembly:  Microsoft.Synchronization.MetadataStorage (in Microsoft.Synchronization.MetadataStorage.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property IsDeleted As Boolean
    Get
'Usage
Dim instance As ItemMetadata
Dim value As Boolean

value = instance.IsDeleted
public abstract bool IsDeleted { get; }
public:
virtual property bool IsDeleted {
    bool get () abstract;
}
abstract IsDeleted : bool
abstract function get IsDeleted () : boolean

Property Value

Type: System.Boolean
true if the item has been deleted; otherwise, false.

Remarks

An item that has the IsDeleted property set to true is also known as a tombstone.

This value indicates that the item has been deleted from the item store. The metadata for the item will continue to exist in the metadata store until tombstones are cleaned up.

See Also

Reference

ItemMetadata Class

Microsoft.Synchronization.MetadataStorage Namespace