App.config beskeder
Jeg har lavet følgende configurationsfil:/********************************'
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="section1">
<section name="undersection1" type="System.Configuration.NameValueSectionHandler,System" />
<section name="undersection2" type="System.Configuration.NameValueSectionHandler,System" />
</sectionGroup>
</configSections>
<section1>
<undersection1>
</undersection1>
<undersection2>
</undersection2>
</section1>
</configuration>
***********************************/
Dettte giver en fejl for alle de sektioner som jeg burde have oprettet i toppe, nemlig: Could not find schema information for the element 'undersection1'
Hvordan retter man det?
Er det endvidere muligt at specificere værdierne i undersectionerne som
<app name="asdf" time="asdf" age="asdf" />, istedet for at bruge <add key="name" value="asdf" />?
