次の方法で共有


ConfigurationElement.GetChildElement メソッド

定義

現在の構成要素の下にある子要素を返します。

オーバーロード

GetChildElement(String)

現在の構成要素の下にあり、指定した名前を持つ子要素を返します。

GetChildElement(String, Type)

現在の構成要素の下にあり、指定した名前と型を持つ子要素を返します。

GetChildElement(String)

現在の構成要素の下にあり、指定した名前を持つ子要素を返します。

public:
 Microsoft::Web::Administration::ConfigurationElement ^ GetChildElement(System::String ^ elementName);
public Microsoft.Web.Administration.ConfigurationElement GetChildElement (string elementName);
member this.GetChildElement : string -> Microsoft.Web.Administration.ConfigurationElement
Public Function GetChildElement (elementName As String) As ConfigurationElement

パラメーター

elementName
String

要求される要素の名前。

戻り値

ConfigurationElement オブジェクト。

例外

elementName パラメーターは null または空です。

注釈

現在の要素がコレクションのルート要素を表していない場合は、このメソッドを使用する必要があります。 構成コレクション内の個々の項目を返すには、 メソッドを使用します GetCollection

適用対象

GetChildElement(String, Type)

現在の構成要素の下にあり、指定した名前と型を持つ子要素を返します。

public:
 Microsoft::Web::Administration::ConfigurationElement ^ GetChildElement(System::String ^ elementName, Type ^ elementType);
public Microsoft.Web.Administration.ConfigurationElement GetChildElement (string elementName, Type elementType);
member this.GetChildElement : string * Type -> Microsoft.Web.Administration.ConfigurationElement
Public Function GetChildElement (elementName As String, elementType As Type) As ConfigurationElement

パラメーター

elementName
String

要求される要素の名前。

elementType
Type

要求される要素の.NET Framework型。

戻り値

ConfigurationElement オブジェクト。

例外

elementType パラメーターが null です。

注釈

現在の要素がコレクションのルート要素を表していない場合は、このメソッドを使用する必要があります。 構成コレクション内の個々の項目を返すには、 メソッドを使用します GetCollection

適用対象