Show / Hide Table of Contents

Class ValidData

Represents the outcome of a check which can be represented in a list and can give information on the details of the check.

Inheritance
System.Object
ViewModelBase
ValidData
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
ViewModelBase.PropertyChanged
ViewModelBase.OnPropertyChanged(String)
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 ValidData : ViewModelBase, INotifyPropertyChanged

Constructors

| Improve this Doc View Source

ValidData(String, String, BotStatus, String, String, List<LogEntry>)

Creates a ValidData object after a valid check.

Declaration
public ValidData(string data, string proxy, BotStatus result, string capturedData, string source, List<LogEntry> log)
Parameters
Type Name Description
System.String data

The data line that was used in the check

System.String proxy

The proxy that was used for the check (empty string if none)

BotStatus result

The result of the check

System.String capturedData

The data captured during the check

System.String source

The last page source code of the check

System.Collections.Generic.List<LogEntry> log

The detailed log of the check

Properties

| Improve this Doc View Source

CapturedData

The data captured during the check.

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

Data

The data line that was checked.

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

Log

The entire log with the details of the check.

Declaration
public List<LogEntry> Log { get; set; }
Property Value
Type Description
System.Collections.Generic.List<LogEntry>
| Improve this Doc View Source

Proxy

The proxy that was used for the check.

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

Result

The result of the check.

Declaration
public BotStatus Result { get; set; }
Property Value
Type Description
BotStatus
| Improve this Doc View Source

Source

The contents of the last page's source code at the end of the check.

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

Time

The timestamp of the check completion as a DateTime object.

Declaration
public DateTime Time { get; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Timestamp

The timestamp of the check completion as a formatted date.

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

UnixDate

The unix timestamp of the check completion.

Declaration
public int UnixDate { get; set; }
Property Value
Type Description
System.Int32

Implements

System.ComponentModel.INotifyPropertyChanged
  • Improve this Doc
  • View Source
Back to top Generated by DocFX