SessionStateSection.StateConnectionString 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 the state server connection string.
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
The state server connection string.
- Attributes
The following code example demonstrates how to get the StateConnectionString property. Refer to the code example in the SessionStateSection class topic to learn how to access the SessionStateSection object.
// Display the current StateConnectionString property value.
Console.WriteLine("StateConnectionString: {0}",
sessionStateSection.StateConnectionString);
' Display the current StateConnectionString property value.
Console.WriteLine("StateConnectionString: {0}", _
sessionStateSection.StateConnectionString)
This property specifies the server name and the port when the session state is stored remotely. The stateConnectionString
attribute is required when the Mode is set to StateServer.
Примечание
Make sure the ASP.NET state service is running on the remote server that stores the session-state information. This service is installed with ASP.NET and is located by default at [drive:]\WINDOWS\Microsoft.NET\Framework\VersionNumber\aspnet_state.exe.
Applies to
Продукт | Версии |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Отзыв о .NET
.NET — это проект с открытым исходным кодом. Выберите ссылку, чтобы оставить отзыв: