NameValueFileSectionHandler.Create(Object, Object, XmlNode) 方法

定义

创建新的配置处理程序,并根据指定参数将其添加到节处理程序集合中。

public:
 virtual System::Object ^ Create(System::Object ^ parent, System::Object ^ configContext, System::Xml::XmlNode ^ section);
public object Create (object parent, object configContext, System.Xml.XmlNode section);
abstract member Create : obj * obj * System.Xml.XmlNode -> obj
override this.Create : obj * obj * System.Xml.XmlNode -> obj
Public Function Create (parent As Object, configContext As Object, section As XmlNode) As Object

参数

parent
Object

父 对象。

configContext
Object

配置上下文对象。

section
XmlNode

节 XML 节点。

返回

配置对象。

实现

例外

sectionfile 特性中指定的文件存在,但无法加载。

sectionname 特性与 file 特性中指定文件的根元素不匹配。

注解

对象 parent 参数充当相应父配置节中的配置设置。 对象 configContext 参数是配置节处理程序计算其配置值的虚拟路径。 通常,该参数是保留参数,并为 null。 参数 sectionXmlNode 包含要处理的配置信息的 。 参数 section 提供对配置节的 XML 内容的直接访问。

适用于