IdentitySection.UserName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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="")]
public string UserName { get; set; }
[<System.Configuration.ConfigurationProperty("userName", DefaultValue="")>]
member this.UserName : string with get, set
Public Property UserName As String
Property Value
The user name to use for impersonation.
- Attributes
Examples
The following code example shows how to access the UserName property. 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"
Remarks
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.
Note
For security reasons, the identity section supports storage of the encrypted UserName and Password.
Applies to
.NET