Interface IScraperPersist
public interface IScraperPersist
Properties
IsDirty
Indicates whether the object state has changed since the last Save().
bool IsDirty { get; }
Property Value
Methods
Load(JsonObject)
Loads the object state into a newly created instance.
void Load(JsonObject js)
Parameters
jsJsonObject
Remarks
After loading the flag IsDirty is implicitly false.
Save()
Saves the object state as a JSON object.
JsonObject Save()
Returns
Remarks
After saving the object the flag IsDirty is set to false.