Class Record
A record that, given a Config's name and a Wordlist's location, returns how many data lines have already been checked.
Inheritance
System.Object
Record
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: RuriLib.Models
Assembly: RuriLib.dll
Syntax
public class Record
Constructors
| Improve this Doc View SourceRecord()
Needed for NoSQL deserialization.
Declaration
public Record()
Record(String, String, Int32)
Creates a Record to be stored in the Database.
Declaration
public Record(string configName, string wordlistLocation, int checkpoint)
Parameters
Type | Name | Description |
---|---|---|
System.String | configName | The name of the Config used in the check |
System.String | wordlistLocation | The location on disk of the Wordlist used in the check |
System.Int32 | checkpoint | The amount of data lines checked when creating the record |
Properties
| Improve this Doc View SourceCheckpoint
How many data lines were already checked.
Declaration
public int Checkpoint { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ConfigName
The name of the Config.
Declaration
public string ConfigName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Needed for NoSQL storage.
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
WordlistLocation
The location on disk of the Wordlist.
Declaration
public string WordlistLocation { get; set; }
Property Value
Type | Description |
---|---|
System.String |