Show / Hide Table of Contents

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 Source

CustomKeychains

List of custom KeyChain Types.

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

ExportFormats

List of custom Export Formats.

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

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 Source

GetCustomKeychain(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

| Improve this Doc View Source

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

| Improve this Doc View Source

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

| Improve this Doc View Source

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

  • Improve this Doc
  • View Source
Back to top Generated by DocFX