다음을 통해 공유


SessionStateSection.Mode 속성

정의

세션 상태를 저장할 위치를 지정하는 값을 가져오거나 설정합니다.

public:
 property System::Web::SessionState::SessionStateMode Mode { System::Web::SessionState::SessionStateMode get(); void set(System::Web::SessionState::SessionStateMode value); };
[System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.SessionState.SessionStateMode.InProc)]
public System.Web.SessionState.SessionStateMode Mode { get; set; }
[<System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.SessionState.SessionStateMode.InProc)>]
member this.Mode : System.Web.SessionState.SessionStateMode with get, set
Public Property Mode As SessionStateMode

속성 값

SessionStateMode

SessionStateMode 값 중 하나입니다. 기본값은 InProc입니다.

특성

예제

다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 Mode 속성입니다. 코드 예제를 참조 합니다 SessionStateSection 클래스 항목에 액세스 하는 방법을 알아보려면는 SessionStateSection 개체입니다.

// Display the current Mode property value.
Console.WriteLine("Mode: {0}",
  sessionStateSection.Mode);
' Display the current Mode property value.
Console.WriteLine("Mode: {0}", sessionStateSection.Mode)

설명

SessionStateMode 필수 특성 아니며 구성 계층 구조의 상위 수준에서 또는 기본값에서 상속 될 수 있습니다. 그러나이 섹션에 대 한 구성 처리기는 항상이 섹션을 작성 하는 경우 현재 상속 된 값에 따라 모드 작성 합니다.

적용 대상