» »

c# ConfigSection

c# ConfigSection

detroit ::

Delam config section v app.configu



v app.configu imam
<configSections>
      <section name="AConfigSection" type="TestGJILoad.AConfigSection, TestGJILoad"/>
  </configSections>
  <AConfigSection>
    <UrlElement name="FCL1 oz kaj pa vem"  url="www.abc.com"/>
  </AConfigSection>


using System.Configuration;

namespace TestGJILoad
{
    public class UrlElement : ConfigurationElement
    {
        [ConfigurationProperty("name", IsRequired = true)]
        public string Name
        {
            get { return (string)this["name"]; }
            set { this["name"] = value; }
        }

        [ConfigurationProperty("url")]
        public string Url
        {
            get { return (string)this["url"]; }
            set { this["url"] = value; }
        }

    }

    public class AConfigSection : ConfigurationSection
    {
        [ConfigurationProperty("url")]
        public UrlElement AUrl
        {
            get { return (UrlElement)this["url"]; }
            set { this["url"] = value; }
        }
    }
}

to je nek class pač in v glavnem classu
 AConfigSection config = (AConfigSection)System.Configuration.ConfigurationManager.GetSection("AConfigSection");


Ta zadnja vrstica vrne Configuration system failed to initialize. Ali kdo opazi kako napako
Skero
  • spremenil: detroit ()

detroit ::

Sem že našel Sections mora biti pravzaprav prvi child od configuration noda
Skero


Vredno ogleda ...

TemaSporočilaOglediZadnje sporočilo
TemaSporočilaOglediZadnje sporočilo
»

[C#] WPF vprašanja

Oddelek: Programiranje
101117 (739) Ciklamen
»

c# seminarska

Oddelek: Programiranje
112643 (2316) tuned
»

[C#] Deserializacija

Oddelek: Programiranje
181855 (1458) Cvenemir
»

[c#] Ustvarjanje objekta v drugem razredu

Oddelek: Programiranje
81648 (1593) Cvenemir
»

[c#] Vprašanje glede release verzije aplikacije

Oddelek: Programiranje
51475 (1299) Ericssony

Več podobnih tem