Tagged Questions
10
votes
6answers
3k views
Get the App.Config of another Exe
I have an exe with an App.Config file. Now I want to create a wrapper dll around the exe in order to consume some of the functionalities.
The question is how can I access the app.config property in ...
7
votes
3answers
579 views
Why does ConfigurationValidator validate the default value of a ConfigurationProperty even if IsRequired is true?
Let's say I have a configuration property that looks like this. Note that there is no default value.
[ConfigurationProperty("x", IsRequired = true)]
[StringValidator(MinLength = 1)]
public string X
{
...
5
votes
2answers
462 views
Thread safe usage of System.Configuration
Is there an easy method of accessing custom System.Configuration-based configuration data through a thread-safe interface without requiring each execution context from loading/reloading configuration ...
4
votes
3answers
482 views
ConfigurationElementCollection with a number of ConfigurationElements of different type
Is it possible to have a CollectionElementCollection with a number of different by type CollectionElements, e.g.:
<collection>
<add type="MyType1, MyLib" Type1SpecificProp="1" />
...
3
votes
3answers
333 views
How can I use TypeConverters with a ConfigurationSection?
So I've got a ConfigurationSection/ConfigurationElementCollection that has a configuration like this:
<mimeFormats>
<add mimeFormat="text/html" />
</mimeFormats>
And here is ...
3
votes
3answers
3k views
Getting config element from ConfigurationElementCollection
I have (hopefully) setup ConfigurationElementCollection of my own design with emails as keys. Now what? Hard to find actually on the web. How do I:
iterate through it?
See if a specific element ...
3
votes
2answers
1k views
System.configuration web.config and app.config
While using a third party dll I was getting the following exception -
"exePath must be specified when not running inside a stand alone exe"
with following trace
...
2
votes
1answer
79 views
Preserve formatting on Configuration.Save()
I have custom ConfigurationSection and call Configuration.Save() after some modifications against it:
var config = ConfigurationManager.OpenMappedExeConfiguration(
new ExeConfigurationFileMap() { ...
2
votes
1answer
579 views
Change setting within a “ClientSettingsSection” with C#
Is it possible to change values of settings within a ClientSettingsSection (System.Configuration.ClientSettingsSection) in a exe-configuration? Unfornately the settings in the ClientSettingsSection ...
1
vote
2answers
301 views
Simple custom config section with collection in .NET4
I'm trying to write a very simple custom configuration section for a .NET4 application. My goal is this:
<configuration>
<configSections>
<section name="myServices" ...
1
vote
0answers
189 views
How do I change configsource value in remote configuration file
I'm using ConfigurationManager.OpenMappedExeConfiguration to read and modify web.config files of remote web services. This works well for the most part.
The config file splits out the unity ...
1
vote
1answer
136 views
How better to map configuration elements to application objects?
I have a .NET application which has a custom configuration to re-construct some classes on startup. That's not a plain (de)serialization, that's more complex and mixed.
class FooElement : ...
1
vote
1answer
565 views
The best way to get a path to machine.config of a different .NET version
Whats the best way to get a path to .net 2.0 machine.config file, if the application is running on .net 4.0?
One way would be to do string manipulation and file system access to replace v4.0* with ...
0
votes
0answers
38 views
How can I detect value syntax errors in app.config files?
I need to improve the reporting of errors in app.config files.
I have a tiny test app that includes a setting of type "int". If I change its value in app.config to something that isn't a valid ...
0
votes
0answers
60 views
ConfigurationElement.DeserializeElement doesn't operate on a XmlNode
I use this object
using System.Configuration;
using System.Xml;
public class MyConfigElement : ConfigurationElement
{
/* ... some code for accessing the attributes */
public static ...