Class WordlistType
Class that represents a type of Wordlist with rules to check the validity and to slice the data given a separator.
Inheritance
System.Object
WordlistType
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 WordlistType
Properties
| Improve this Doc View SourceName
The name of the Wordlist Type.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Regex
The regular expression that validates the input data.
Declaration
public string Regex { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Separator
The separator used for slicing the input data into a list of strings.
Declaration
public string Separator { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Slices
The list of variable names of the slices that will be created from the input data.
Each slice should be used to generate a pair of values with a variable name and a value taken from the split input data.
Declaration
public List<string> Slices { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Verify
Whether to check if the regex successfully matches the input data.
Declaration
public bool Verify { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |