Interface IDirtyTracking
Interface for components that support dirty tracking.
Namespace: StylelabsStylelabs.MSdkStylelabs.M.Sdk.ContractsDirtyTracking
Assembly: Stylelabs.M.Sdk.dll
Syntax
RequestResponse
public interface IDirtyTrackingProperties
IsDirty
Gets a value indicating whether the object has unsaved changes.
Declaration
RequestResponse
bool IsDirty { get; }Property Value
| Type | Description |
|---|---|
| bool |
IsTracking
Gets a value indicating whether the object is tracking changes.
Declaration
RequestResponse
bool IsTracking { get; }Property Value
| Type | Description |
|---|---|
| bool |
Methods
MarkClean()
Marks the object as clean. This will set IsDirty to false.
Declaration
RequestResponse
void MarkClean()StartTracking()
Starts tracking the object for changes.
Declaration
RequestResponse
void StartTracking()