Class UserNameCredentialsElement
Represents a configuration element containing the user name and password credentials.
Namespace: Nevatech.Vsb.Repository.Configuration
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public class UserNameCredentialsElement : ConfigurationElement
Constructors
UserNameCredentialsElement()
Declaration
public UserNameCredentialsElement()
Fields
PasswordAttributeName
Name of the attribute representing the password property in the configuration element.
Declaration
public const string PasswordAttributeName = "password"
Field Value
Type | Description |
---|---|
String |
UserNameAttributeName
Name of the attribute representing the user name property in the configuration element.
Declaration
public const string UserNameAttributeName = "userName"
Field Value
Type | Description |
---|---|
String |
Properties
Password
Gets or sets the password.
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
String |
Properties
Gets collection of configuration element properties.
Declaration
protected override ConfigurationPropertyCollection Properties { get; }
Property Value
Type | Description |
---|---|
ConfigurationPropertyCollection |
UserName
Gets or sets the user name.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
String |