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 方法。

适用于