Partager via


ProcessModelSection.PingFrequency Propriété

Définition

Obtient ou définit une valeur indiquant l'intervalle de temps au bout duquel l'extension ISAPI teste le processus de traitement pour déterminer s'il est exécuté.

public:
 property TimeSpan PingFrequency { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("pingFrequency", DefaultValue="10675199.02:48:05.4775807")]
public TimeSpan PingFrequency { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("pingFrequency", DefaultValue="10675199.02:48:05.4775807")>]
member this.PingFrequency : TimeSpan with get, set
Public Property PingFrequency As TimeSpan

Valeur de propriété

TimeSpan

TimeSpan définissant l'intervalle de temps. La valeur par défaut est 30 secondes.

Attributs

Exemples

L'exemple de code suivant illustre l'accès à la propriété PingFrequency.


// Get the current PingFrequency property value.
TimeSpan pingFreq = 
    processModelSection.PingFrequency;

// Set the PingFrequency property to
// TimeSpan.Parse("00:01:00").
processModelSection.PingFrequency = 
    TimeSpan.Parse("00:01:00");
' Get the current PingFrequency property value.
   Dim pingFreq As TimeSpan = _
   processModelSection.PingFrequency

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

Remarques

Le processus de travail est redémarré (rebondit) s’il n’est pas en cours d’exécution après l’expiration de l’intervalle PingFrequency .

S’applique à