SessionStateSection.PartitionResolverType 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 a value specifying where to store the session state.
public:
property System::String ^ PartitionResolverType { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("partitionResolverType", DefaultValue="")]
public string PartitionResolverType { get; set; }
[<System.Configuration.ConfigurationProperty("partitionResolverType", DefaultValue="")>]
member this.PartitionResolverType : string with get, set
Public Property PartitionResolverType As String
Property Value
A value specifying where to store the session state, or an empty string ("").
- Attributes
Remarks
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.