IdentitySection.UserName Propriedade

Definição

Obtém ou define um valor que indica o nome de usuário a ser usado para a representação.Gets or sets a value indicating the user name to use for impersonation.

public:
 property System::String ^ UserName { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("userName", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
public string UserName { get; set; }
[<System.Configuration.ConfigurationProperty("userName", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
member this.UserName : string with get, set
Public Property UserName As String

Valor da propriedade

String

O nome de usuário a ser usado para representação.The user name to use for impersonation.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a UserName propriedade.The following code example shows how to access the UserName property. Consulte o exemplo de código da IdentitySection classe para saber como acessar a seção.Refer to the code example of the IdentitySection class to learn how to access the section.

// Get the UserName property value.
string currentUserName = identitySection.UserName;

// Set the UserName property value.
identitySection.UserName = "userName";
' Get the UserName property value.
Dim currentUserName As String = identitySection.UserName

' Set the UserName property value.
identitySection.UserName = "userName"

Comentários

Como o nome de usuário é armazenado em texto não criptografado, um usuário autenticado com credenciais apropriadas no domínio onde o servidor reside pode lê-lo.Because the user name is stored in clear text, an authenticated user with proper credentials on the domain where the server resides can read it.

Observação

Por motivos de segurança, a seção de identidade dá suporte ao armazenamento de criptografados UserName e Password .For security reasons, the identity section supports storage of the encrypted UserName and Password.

Aplica-se a