How to add allowLocation and allowDefinition in the section

  • Thread starter Thread starter Jeff0803
  • Start date Start date
J

Jeff0803

Guest
I created Custom configuration file and here is the part of the configSection.

<configSections>
<section name="deviceConfiguration" type="Test.MyDeviceConfiguration, Test" />
</configSections>

I want to add allowLocation and allowDefinition like following.

<configSections>
<section name="deviceConfiguration" type="Test.MyDeviceConfiguration, Test" allowLocation="true" allowDefinition="Everywhere"/>
</configSections>

How could I do that?

Continue reading...
 
Back
Top