ConfiguredObject.GetSection (método)
Recupera el contenido de una sección de configuración de un objeto configurado.
Sintaxis
ConfiguredObject.GetSection(SectionName, Section);
ConfiguredObject.GetSection SectionName, Section
Parámetros
Name | Descripción |
---|---|
SectionName |
Variable string que contiene el nombre de la sección de configuración que se va a recuperar (por ejemplo, "BasicAuthenticationSection"). |
Section |
Variable ConfigurationSection en la que se coloca el contenido de la sección de configuración. |
Valor devuelto
Este método no devuelve ningún valor.
Comentarios
Puede usar el método GetSection
para recuperar el contenido de una sección de configuración deseada y establecer sus propiedades configurables.
Nota:
La firma del método GetSection
contiene un parámetro [IN]
para el nombre de sección y un parámetro [OUT]
para el objeto de sección que devuelve el método.
Ejemplo
En el ejemplo siguiente se obtiene la sección de errores HTTP del sitio web predeterminado y se muestran sus propiedades de matriz y no matriz.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
' Get the HTTP errors section by using the GetSection method.
oSite.GetSection "HttpErrorsSection", oSection
' Display a heading.
WScript.Echo "=============================="
WScript.Echo "Http Errors Section Properties"
WScript.Echo "=============================="
' Display the HttpErrorsSection non-array properties.
For Each vProp In oSection.Properties_
If (vProp.Name <> "HttpErrors") And _
(vProp.Name <> "SectionInformation") Then
WScript.Echo vProp.Name & ": " & vProp.Value
End If
Next
WScript.Echo
' Display the HttpErrorsSection SectionInformation properties.
WScript.Echo "HttpErrorsSection.SectionInformation"
WScript.Echo "------------------------------------"
For Each vProp In oSection.SectionInformation.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
' Display the contents of the HttpErrors array property.
WScript.Echo "HttpErrorsSection.HttpErrors"
WScript.Echo "----------------------------"
For Each oHttpErrorElement In oSection.HttpErrors
For Each vProp In oHttpErrorElement.Properties_
WScript.Echo vProp.Name & ": " & vProp.Value
Next
WScript.Echo
Next
Requisitos
Tipo | Descripción |
---|---|
Remoto | - IIS 7.0 en Windows Vista - IIS 7.5 en Windows 7 - IIS 8.0 en Windows 8 - IIS 10.0 en Windows 10 |
Server | - IIS 7.0 en Windows Server 2008 - IIS 7.5 en Windows Server 2008 R2 - IIS 8.0 en Windows Server 2012 - IIS 8.5 en Windows Server 2012 R2 - IIS 10.0 en Windows Server 2016 |
Producto | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
Archivo MOF | WebAdministration.mof |
Consulte también
ConfigurationSection (clase)
ConfiguredObject (clase)
HttpErrorElement (clase)
HttpErrorsSection (clase)