Table of Contents

Interface IChangeTracking

Namespace
Dynamicweb.Core
Assembly
Dynamicweb.Core.dll

The IChangeTracking interface defines operations neeeded in a ChangeTracking environment

public interface IChangeTracking

Properties

IsChanged

Gets a value indicating if the object has changed since restoring

bool IsChanged { get; }

Property Value

bool

Methods

BeginRestoring()

Indicates that the object under change tracking is currently being restored and there for should not be tracked

void BeginRestoring()

EndRestoring()

Indicates that the object under change tracking has ended a restoring operation and should be tracked

void EndRestoring()
To top