app.config создание и чтение разделов проблемы - PullRequest
4 голосов
/ 08 сентября 2011

Я пытался работать с разделами app.config в этом примере:

http://msdn.microsoft.com/en-us/library/system.configuration.configurationcollectionattribute.aspx#Y2391

и это дает мне следующее исключение:

An error occurred creating the configuration section handler for MyUrls: Could not load file or assembly 'ConfigurationCollectionAttribute, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. (E:\Projects\AppConfigSectionsTesting\AppConfigSectionsTesting\bin\Debug\AppConfigSectionsTesting.vshost.exe.Config line 4)

это файл конфигурации -

   <?xml version="1.0" encoding="utf-8" ?>
<configuration>

 <configSections>
   <section name="MyFolders" type="FoldersSection, 
      ConfigurationCollectionAttribute, Version=1.0.0.0, Culture=neutral,   PublicKeyToken=null" />
</configSections>
<MyFolders>
   <Folders>
    <add Path ="D:\\RUN"/>
</Folders>
</MyFolders>

 </configuration>

Я не понимаю, почему .... кто-нибудь может помочь?спасибо.

1 Ответ

3 голосов
/ 08 сентября 2011

В вашем app.config убедитесь, что у вас есть полное пространство имен для класса ConfigurationCollectionAttribute

Например:

<configSections>
    <section name="configSectionName"
             type="Company.Namespace.ConfigSection, Company.Namespace" />
</configSections>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...