R
ryanbreakspear
Hi All,
I've created a class for reading from the App.Config which implements
IConfigurationSectionHandler. I want the Create() to return an
XMLDocument something like:
public object Create(object parent, object ConfigContext, XmlNode
section)
{
XmlDocument XmlDoc = new XmlDocument();
XmlDoc.ImportNode(section,true);
return(XmlDoc);
}
I've tried a few variations on the above but the returned XmlDoc never
has any child nodes. Any ideas?
Thanks in advance.
Ryan
I've created a class for reading from the App.Config which implements
IConfigurationSectionHandler. I want the Create() to return an
XMLDocument something like:
public object Create(object parent, object ConfigContext, XmlNode
section)
{
XmlDocument XmlDoc = new XmlDocument();
XmlDoc.ImportNode(section,true);
return(XmlDoc);
}
I've tried a few variations on the above but the returned XmlDoc never
has any child nodes. Any ideas?
Thanks in advance.
Ryan