HttpRuntimeSection Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HttpRuntimeSection class using default settings.
public:
HttpRuntimeSection();
public HttpRuntimeSection ();
Public Sub New ()
Examples
The following example shows how to create an HttpRuntimeSection object.
// 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)
Applies to
See also
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.