I want to implement the following configuration section:
<Services>
<Service name="Service-1" provider="Provider-1" type="Type-1">
<add key="Region" value="region-name-1"/>
<add key="AccessKey" value="1234567890"/>
<add key="SecretKey" value="asdfghhkl"/>
</Service>
<Service name="Service-2" provider="Provider-1" type="Type-2">
<add key="Region" value="region-name-2"/>
<add key="EndpointName" value="tyudfv.endpoint.com"/>
<add key="AccessKey" value="1234567890"/>
<add key="SecretKey" value="asdfghhkl"/>
</Service>
</Services>
And I'm struggling with two issues: 1. Retrieve list of nodes without wrapping with some parent ConfigurationSection 2. Retrieve KeyValue collection of node Is there some obvious way here? Or it's just such complicated as I think?