This documentation is archived and is not being maintained.

SessionStateSection::PartitionResolverType Property

Gets or sets a value specifying where to store the session state.

Namespace:  System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

[ConfigurationPropertyAttribute(L"partitionResolverType", DefaultValue = L"")]
public:
property String^ PartitionResolverType {
	String^ get ();
	void set (String^ value);
}

Property Value

Type: System::String
A value specifying where to store the session state, or an empty string ("").

If the PartitionResolverType property is specified, the SqlConnectionString property and StateConnectionString property are ignored. The PartitionResolverType can be locked via the LockAttributes property like other properties within the sessionState Element (ASP.NET Settings Schema) element. The connection string returned by the PartitionResolverType will be used on every request to connect to the appropriate server location for the remainder of the request. If the connection string is invalid, ASP.NET will throw the same exception that is thrown when the configured connection string to the server is invalid.

This property is used to partition session-state data across multiple backend nodes when in SQL or state-server mode.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: