다음을 통해 공유


ProcessModelSection.Enable 속성

정의

프로세스 모델을 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool Enable { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enable", DefaultValue=true)]
public bool Enable { get; set; }
[<System.Configuration.ConfigurationProperty("enable", DefaultValue=true)>]
member this.Enable : bool with get, set
Public Property Enable As Boolean

속성 값

프로세스 모델을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

특성

예제

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


// Get the current Enable property value.

bool enable = processModelSection.Enable;

// Set the Enable property to false.
processModelSection.Enable = false;
' Get the current Enable property value.
Dim enable As Boolean = processModelSection.Enable

' Set the Enable property to false.
processModelSection.Enable = False

설명

Enable 속성 ASP.NET 외부 작업자 프로세스에서 호스트 되는지 여부를 지정 합니다. 하는 경우 EnabletrueASP.NET이 고 그렇지 않으면 외부 작업자 프로세스에서 호스트 된, 직접 Inetinfo.exe에서에서 실행 됩니다.

참고

ASP.NET Inetinfo.exe에서 실행 되므로 좋지 않습니다, 로컬 시스템 보안 컨텍스트에서 애플리케이션을 실행 하는 것이 합니다. ASP.NET 인터넷 정보 서비스 (IIS) 6 기본 모드로 실행 되 면이 설정은 무시 됩니다, 일반적으로로 설정 하지 않아도 차이가 false합니다.

적용 대상