次の方法で共有


ManagementConfiguration.GetSection メソッド

定義

指定した構成セクションを取得します。

オーバーロード

GetSection(String)

指定したパスにある構成セクションを取得します。

GetSection(String, Type)

指定したセクション パスにある構成セクションを取得します。

GetSection(String, ManagementConfigurationPath, Boolean)

指定したパスにある構成セクションを取得します。

GetSection(String, Type, ManagementConfigurationPath, Boolean)

指定したパスにある構成セクションを取得します。

GetSection(String)

指定したパスにある構成セクションを取得します。

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

パラメーター

sectionPath
String

セクション文字列。

戻り値

ConfigurationSection指定したセクションの内容を格納する 。

次の例では、 メソッドを GetSection(String) 使用して、"appSettings" セクションの内容を取得します。

public class DemoModuleService : ModuleService {

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

}
}

適用対象

GetSection(String, Type)

指定したセクション パスにある構成セクションを取得します。

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

パラメーター

sectionPath
String

セクション パス。

sectionType
Type

セクション Type

戻り値

ConfigurationSection指定したセクションの内容を格納する 。

適用対象

GetSection(String, ManagementConfigurationPath, Boolean)

指定したパスにある構成セクションを取得します。

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

パラメーター

sectionPath
String

セクション パス。

path
ManagementConfigurationPath

ManagementConfigurationPath管理構成パスを指定する 。

respectDelegation
Boolean

true 委任を尊重する。 false 委任を無視します。

戻り値

ConfigurationSection指定したセクションの内容を格納する 。

適用対象

GetSection(String, Type, ManagementConfigurationPath, Boolean)

指定したパスにある構成セクションを取得します。

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

パラメーター

sectionPath
String

セクション パス。

sectionType
Type

セクション Type

path
ManagementConfigurationPath

ManagementConfigurationPath管理構成パスを指定する 。

respectDelegation
Boolean

true 委任を尊重する。 false 委任を無視します。

戻り値

ConfigurationSection指定したセクションの内容を格納する 。

適用対象