HttpRuntimeSection Constructeur
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.
Initialise une nouvelle instance de la classe HttpRuntimeSection en utilisant les paramètres par défaut.
public:
HttpRuntimeSection();
public HttpRuntimeSection ();
Public Sub New ()
Exemples
L’exemple suivant montre comment créer un HttpRuntimeSection objet.
// Get the section related object.
HttpRuntimeSection configSection =
(HttpRuntimeSection)config.GetSection("system.web/httpRuntime");
' Get the section related object.
Dim configSection As System.Web.Configuration.HttpRuntimeSection = _
CType(config.GetSection("system.web/httpRuntime"), _
System.Web.Configuration.HttpRuntimeSection)