Ich brauche "http://example.com" aus der App.config-Datei.Wie verwendet man ConfigurationManager.AppSettings mit einem benutzerdefinierten Abschnitt?
Aber im Moment bin ich mit:
string peopleXMLPath = ConfigurationManager.AppSettings["server"];
Ich kann den Wert nicht bekommen.
Können Sie darauf hinweisen, was ich falsch mache?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<section name="device" type="System.Configuration.SingleTagSectionHandler" />
<section name="server" type="System.Configuration.SingleTagSectionHandler" />
</configSections>
<device id="1" description="petras room" location="" mall="" />
<server url="http://example.com" />
</configuration>
http://haacked.com/archive/2007/03/11/custom-configuration-sections -in-3-easy-steps.aspx – GibboK
'ConfigurationManager.AppSettings [" MyAppSetting "]' gibt nur die Einstellung, die mit dem Namen "MyAppSetting" unter '' in Ihrer Konfigurationsdatei eingegeben wurde. –
Überprüfen Sie diesen Link http://stackoverflow.com/questions/6329114/how-to-read-a-values-from-new-section-in-web-config –