Show / Hide Table of Contents

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 Source

Record()

Needed for NoSQL deserialization.

Declaration
public Record()
| Improve this Doc View Source

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 Source

Checkpoint

How many data lines were already checked.

Declaration
public int Checkpoint { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

ConfigName

The name of the Config.

Declaration
public string ConfigName { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Id

Needed for NoSQL storage.

Declaration
public Guid Id { get; set; }
Property Value
Type Description
System.Guid
| Improve this Doc View Source

WordlistLocation

The location on disk of the Wordlist.

Declaration
public string WordlistLocation { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX