ApplicationPool.Start Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Démarre le pool d’applications actuel.
public:
Microsoft::Web::Administration::ObjectState Start();
public Microsoft.Web.Administration.ObjectState Start ();
member this.Start : unit -> Microsoft.Web.Administration.ObjectState
Public Function Start () As ObjectState
Retours
Valeur actuelle ObjectState du pool d’applications.
Exemples
L’exemple suivant vérifie la valeur de la State propriété. Si le pool d’applications est arrêté, l’exemple le démarre. Cet exemple de code fait partie d’un exemple plus grand fourni pour la ApplicationPool classe .
// If the applicationPool is stopped, restart it.
if (applicationPool.State == ObjectState.Stopped)
{
applicationPool.Start();
}
Remarques
Cette méthode démarre le pool d’applications, puis retourne le nouvel état du pool d’applications.