Compartilhar via


ManagementConfiguration.GetSection Método

Definição

Recupera a seção de configuração especificada.

Sobrecargas

GetSection(String)

Recupera a seção de configuração no caminho especificado.

GetSection(String, Type)

Recupera a seção de configuração no caminho da seção especificado.

GetSection(String, ManagementConfigurationPath, Boolean)

Recupera a seção de configuração no caminho especificado.

GetSection(String, Type, ManagementConfigurationPath, Boolean)

Recupera a seção de configuração no caminho especificado.

GetSection(String)

Recupera a seção de configuração no caminho especificado.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath);
member this.GetSection : string -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String) As ConfigurationSection

Parâmetros

sectionPath
String

A cadeia de caracteres da seção.

Retornos

Um ConfigurationSection que contém o conteúdo da seção especificada.

Exemplos

O exemplo a seguir usa o GetSection(String) método para recuperar o conteúdo da seção "appSettings".

public class DemoModuleService : ModuleService {

    [ModuleServiceMethod]
    public ArrayList GetSettings() {
        ManagementConfiguration manConfig = this.ManagementUnit.Configuration;
        ConfigurationSection appSetSect = manConfig.GetSection("appSettings");
        ConfigurationElementCollection settings = appSetSect.GetCollection();

}
}

Aplica-se a

GetSection(String, Type)

Recupera a seção de configuração no caminho da seção especificado.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Type ^ sectionType);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Type sectionType);
member this.GetSection : string * Type -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, sectionType As Type) As ConfigurationSection

Parâmetros

sectionPath
String

O caminho da seção.

sectionType
Type

A seção Type.

Retornos

Um ConfigurationSection que contém o conteúdo da seção especificada.

Aplica-se a

GetSection(String, ManagementConfigurationPath, Boolean)

Recupera a seção de configuração no caminho especificado.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Microsoft::Web::Management::Server::ManagementConfigurationPath ^ path, bool respectDelegation);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Microsoft.Web.Management.Server.ManagementConfigurationPath path, bool respectDelegation);
member this.GetSection : string * Microsoft.Web.Management.Server.ManagementConfigurationPath * bool -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, path As ManagementConfigurationPath, respectDelegation As Boolean) As ConfigurationSection

Parâmetros

sectionPath
String

O caminho da seção.

path
ManagementConfigurationPath

Um ManagementConfigurationPath que especifica o caminho de configuração de gerenciamento.

respectDelegation
Boolean

true para respeitar a delegação; false para ignorar a delegação.

Retornos

Um ConfigurationSection que contém o conteúdo da seção especificada.

Aplica-se a

GetSection(String, Type, ManagementConfigurationPath, Boolean)

Recupera a seção de configuração no caminho especificado.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Type ^ sectionType, Microsoft::Web::Management::Server::ManagementConfigurationPath ^ path, bool respectDelegation);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Type sectionType, Microsoft.Web.Management.Server.ManagementConfigurationPath path, bool respectDelegation);
member this.GetSection : string * Type * Microsoft.Web.Management.Server.ManagementConfigurationPath * bool -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, sectionType As Type, path As ManagementConfigurationPath, respectDelegation As Boolean) As ConfigurationSection

Parâmetros

sectionPath
String

O caminho da seção.

sectionType
Type

A seção Type.

path
ManagementConfigurationPath

Um ManagementConfigurationPath que especifica o caminho de configuração de gerenciamento.

respectDelegation
Boolean

true para respeitar a delegação; false para ignorar a delegação.

Retornos

Um ConfigurationSection que contém o conteúdo da seção especificada.

Aplica-se a