다음을 통해 공유


SessionStateSection.StateConnectionString 속성

정의

상태 서버 연결 문자열을 가져오거나 설정합니다.

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

속성 값

String

상태 서버 연결 문자열입니다.

특성

예제

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

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

설명

이 속성을 세션 상태를 원격으로 저장할 때 서버 이름 및 포트를 지정 합니다. 합니다 stateConnectionString 특성은 필요 합니다 Mode 로 설정 된 StateServer합니다.

참고

ASP.NET 상태 서비스 세션 상태 정보를 저장 하는 원격 서버에서 실행 되 고 있는지 확인 하십시오. 이 서비스를 ASP.NET을 사용 하 여 설치할 기본 위치는 [드라이브:] \WINDOWS\Microsoft.NET\Framework\VersionNumber\aspnet_state.exe 합니다.

적용 대상