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)

public:
property String^ PartitionResolverType {
	String^ get ();
	void set (String^ value);
}
/** @property */
public String get_PartitionResolverType ()

/** @property */
public void set_PartitionResolverType (String value)

public function get PartitionResolverType () : String

public function set PartitionResolverType (value : String)

Not applicable.

Property Value

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.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: