Interface IScraperPersist

Namespace
Subsembly.Scraper
Assembly
Subsembly.Scraper.dll
public interface IScraperPersist

Properties

IsDirty

Indicates whether the object state has changed since the last Save().

bool IsDirty { get; }

Property Value

bool

Methods

Load(JsonObject)

Loads the object state into a newly created instance.

void Load(JsonObject js)

Parameters

js JsonObject

Remarks

After loading the flag IsDirty is implicitly false.

Save()

Saves the object state as a JSON object.

JsonObject Save()

Returns

JsonObject

Remarks

After saving the object the flag IsDirty is set to false.