Partager via


SessionStateSection.StateNetworkTimeout Propriété

Définition

Obtient ou définit la durée pendant laquelle la connexion réseau entre le serveur Web et le serveur d’état peut rester inactive.

public:
 property TimeSpan StateNetworkTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("stateNetworkTimeout", DefaultValue="00:00:10")]
public TimeSpan StateNetworkTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("stateNetworkTimeout", DefaultValue="00:00:10")>]
member this.StateNetworkTimeout : TimeSpan with get, set
Public Property StateNetworkTimeout As TimeSpan

Valeur de propriété

TimeSpan

La durée, en secondes, pendant laquelle la connexion réseau entre le serveur Web et le serveur d'état peut rester inactive avant que la session ne soit abandonnée. La valeur par défaut est 10 secondes.

Attributs

Exemples

L’exemple de code suivant montre comment obtenir la StateNetworkTimeout propriété. Reportez-vous à l’exemple de code de la SessionStateSection rubrique de classe pour savoir comment accéder à l’objet SessionStateSection .

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

Remarques

Cet sessionStateSection attribut est requis lorsque la Mode propriété est définie sur StateServer.

S’applique à