Class PasswordList
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a list of passwords.
public class PasswordList : BaseConfigurationType
- Inheritance
-
PasswordList
- Inherited Members
Constructors
PasswordList()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.PasswordList class.
public PasswordList()
Properties
PasswordEntries
Gets or sets the password entries in the password list.
public PasswordListEntries PasswordEntries { get; set; }
Property Value
Methods
ClearEncryptedPasswords()
Ensures that all encrypted passwords are cleared.
public void ClearEncryptedPasswords()
ClearPlainTextPasswords()
Ensures that all plaintext passwords are cleared.
public void ClearPlainTextPasswords()
Clone()
Creates a clone of this CENTREL.XIA.Configuration.Types.PasswordList object.
public PasswordList Clone()
Returns
- PasswordList
A clone of this CENTREL.XIA.Configuration.Types.PasswordList object.
DecryptPasswords()
Decrypts each of the passwords in the password list.
public void DecryptPasswords()
EncryptPasswords()
Encrypts each of the passwords in the password list, and clears the plain text password values.
public void EncryptPasswords()
FromXml(string)
Returns the CENTREL.XIA.Configuration.Types.PasswordList from the specified XML data.
public static PasswordList FromXml(string xml)
Parameters
xml
stringThe XML representation of the PasswordList.
Returns
- PasswordList
A CENTREL.XIA.Configuration.Types.PasswordList from the specified XML.