Это касается файла web.config
Вот ConfigSection
<configSections>
<sectionGroup name="HttpExceptionHandler">
<section name="errorLog" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<section name="errorMail" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</sectionGroup>
Вот группа Group:
<HttpExceptionHandler>
<errorLog type="MI.Generic.HttpExceptionHandler.SqlErrorLog, MI.Generic.HttpExceptionHandler" dataSource="opentraderdev\dev" initialCatalog="MiTraderError" />
</HttpExceptionHandler>
Вот код:
public class ErrorLogConfiguration : ConfigurationSection
{
public static ErrorLogConfiguration GetConfig()
{
return ConfigurationManager.GetSection("HttpExceptionHandler\\errorLog") as ErrorLogConfiguration;
}
[ConfigurationProperty("initialCatalog", IsRequired = true)]
public string InitialCatalog
{
get
{
return this["initialCatalog"] as string;
}
}
[ConfigurationProperty("dataSource", IsRequired = true)]
public string DataSource
{
get
{
return this["dataSource"] as string;
}
}
}
Возврат всегда нулевой. У меня закончились идеи. Любая помощь приветствуется.