다음을 통해 공유


ProcessModelSection.UserName 속성

정의

Windows ID에 사용할 사용자 이름을 나타내는 값을 가져오거나 설정합니다.

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

속성 값

사용자 이름입니다. 기본값은 Machine입니다.

특성

예제

다음 코드 예제에서는 UserName 속성에 액세스하는 방법을 보여 줍니다.


// Get the current UserName property value.
string userName = 
  processModelSection.UserName;

// Set the UserName property to "CustomUser".
processModelSection.UserName = "CustomUser";
' Get the current UserName property value.
   Dim userName As String = _
   processModelSection.UserName

' Set the UserName property to "CustomUser".
processModelSection.UserName = "CustomUser"

설명

있는 경우는 UserName 기본 프로세스의 다른 Windows id를 정의 합니다. 이 id는 ASP.NET 작업자 프로세스 실행에 사용 됩니다.

기본적으로 UserName 특수 값 컴퓨터 및 ASP.NET을 설치할 때 자동으로 생성 되는 aspnet 사용자 계정으로 프로세스 실행으로 설정 됩니다.

합니다 Password 속성을 사용 해야 합니다는 UserName 속성입니다.

제공 된 경우 이러한 속성 값 작업자 프로세스가 구성된 된 Windows id로 실행 합니다.

참고

경우는 UserName 자동 생성 암호를 사용 하 여 시스템에 속성을 설정 하면 관리 계정으로 프로세스를 실행 하 고 모든 관리자 권한을 보유 하는 프로세스에서 실행 되는 모든 ASP.NET 사용자 코드를 허용 하는 엔터티를 정의 합니다. 따라서 주의 하 여 허용 되는 권한이이 경우.

적용 대상