src/Unosquare.PassCore.PasswordProvider/PasswordChangeOptions.cs [68:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public string[] LdapHostnames
{
get => ldapHostnames ?? new string[] { };
set => ldapHostnames = value;
}
///
public string LdapPassword
{
get => ldapPassword ?? string.Empty;
set => ldapPassword = value;
}
///
public string LdapUsername
{
get => ldapUsername ?? string.Empty;
set => ldapUsername = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/Zyborg.PassCore.PasswordProvider.LDAP/LdapPasswordChangeOptions.cs [18:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public string[] LdapHostnames
{
get => ldapHostnames ?? new string[] { };
set => ldapHostnames = value;
}
///
public string LdapPassword
{
get => ldapPassword ?? string.Empty;
set => ldapPassword = value;
}
///
public string LdapUsername
{
get => ldapUsername ?? string.Empty;
set => ldapUsername = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -