Condividi tramite


ProcessModelSection.ClientConnectedCheck Proprietà

Definizione

Ottiene o imposta un valore indicante per quanto tempo una richiesta viene lasciata nella coda.

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

Valore della proprietà

Valore di TimeSpan indicante la durata di accodamento. Il valore predefinito è 5 secondi.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come accedere e modificare la ClientConnectedCheck proprietà .


// Get the current ClientConnectedCheck property value.
TimeSpan clConnectCheck = 
 processModelSection.ClientConnectedCheck;

// Set the ClientConnectedCheck property to
// TimeSpan.Parse("00:15:00").
processModelSection.ClientConnectedCheck = 
    TimeSpan.Parse("00:15:00");
' Get the current ClientConnectedCheck property value.
   Dim clConnectCheck As TimeSpan = _
   processModelSection.ClientConnectedCheck

' Set the ClientConnectedCheck property to
' TimeSpan.Parse("00:15:00").
   processModelSection.ClientConnectedCheck = _
   TimeSpan.Parse("00:15:00")

Commenti

Questa proprietà specifica per quanto tempo viene accodata una richiesta prima che ASP.NET esegua un controllo connesso al client.

Nota

Se l'intervallo scade mentre la richiesta è ancora in coda, viene eseguito un controllo connesso al client prima di passare la richiesta al processo di lavoro ASP.NET per la gestione.

Si applica a