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.
Implements
Inherited Members
Namespace: RuriLib.Models
Assembly: RuriLib.dll
Syntax
public class ValidData : ViewModelBase, INotifyPropertyChanged
Constructors
| Improve this Doc View SourceValidData(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 SourceCapturedData
The data captured during the check.
Declaration
public string CapturedData { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Data
The data line that was checked.
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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> |
Proxy
The proxy that was used for the check.
Declaration
public string Proxy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Result
The result of the check.
Declaration
public BotStatus Result { get; set; }
Property Value
Type | Description |
---|---|
BotStatus |
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 |
Time
The timestamp of the check completion as a DateTime object.
Declaration
public DateTime Time { get; }
Property Value
Type | Description |
---|---|
System.DateTime |
Timestamp
The timestamp of the check completion as a formatted date.
Declaration
public string Timestamp { get; }
Property Value
Type | Description |
---|---|
System.String |
UnixDate
The unix timestamp of the check completion.
Declaration
public int UnixDate { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |