Class EnvironmentSettings
Settings for customizeable data types used in the library.
Inheritance
System.Object
EnvironmentSettings
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 EnvironmentSettings
Properties
| Improve this Doc View SourceCustomKeychains
List of custom KeyChain Types.
Declaration
public List<CustomKeychain> CustomKeychains { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CustomKeychain> |
ExportFormats
List of custom Export Formats.
Declaration
public List<ExportFormat> ExportFormats { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ExportFormat> |
WordlistTypes
List of custom Wordlist Types.
Declaration
public List<WordlistType> WordlistTypes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<WordlistType> |
Methods
| Improve this Doc View SourceGetCustomKeychain(String)
Gets a Custom KeyChain given its name.
Declaration
public CustomKeychain GetCustomKeychain(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the Custom KeyChain |
Returns
Type | Description |
---|---|
CustomKeychain | The CustomKeychain object if found, a default one if not |
GetCustomKeychainNames()
Gets the names of all Custom KeyChains.
Declaration
public List<string> GetCustomKeychainNames()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The list of all the names of custom KeyChain types |
GetWordlistType(String)
Gets a Wordlist Type given its name.
Declaration
public WordlistType GetWordlistType(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the Wordlist Type |
Returns
Type | Description |
---|---|
WordlistType | The WordlistType object if found, a default one if not |
GetWordlistTypeNames()
Gets the names of all Wordlist Types.
Declaration
public List<string> GetWordlistTypeNames()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The list of all the names of custom Wordlist Types |