Top "Configurationmanager" questions

In the .Net framework, ConfigurationManager is a built-in object that provides access to configuration files.

Web.Config, external file for system.serviceModel

Using VS2010 I have the following in my web.config (detail removed). <system.serviceModel> <behaviors /> <…

c# web-config app-config configurationmanager
ConfigurationManager not declared - Have dll

Quick background: I have a VB.NET application in which I was previously using ConfigurationSettings.AppSettings to read from app.…

vb.net configurationmanager
Difference between ConfigurationManager and ConfigurationSettings

What is the main difference between System.Configuration.ConfigurationManager.AppSettings["key"] and System.Configuration.ConfigurationSettings.AppSettings["key"] ?

c# configurationmanager
ConfigurationManager class not available

I am not able to get the connectionString from App.Config file.. Am I missing something? after creating the class, …

c# app-config configurationmanager
ASP.NET Web.Config ConfigurationManager.AppSettings File Caching

I am using ConfigurationManager.AppSettings collection to retreive configuration values from a Web.config file in an ASP.NET application. …

asp.net caching web-config configurationmanager
How do I select a .Net application configuration file from a command line parameter?

I would like to override the use of the standard app.config by passing a command line parameter. How do …

.net configuration configurationmanager
How to Write to a User.Config file through ConfigurationManager?

I'm trying to persist user settings to a configuration file using ConfigurationManager. I want to scope these settings to the …

c# .net configuration-files configurationmanager settings
error storing < and > characters in app.config file in C#

I want to store a sql query in app.config file which has < and > characters but file shows …

c# configuration app-config configuration-files configurationmanager
app.config: how do I make a nested customSection called appSettings be the ConfigurationManager.AppSettings

my desired app.config would be like this: <configSections> <sectionGroup name="QA_Environment"> <section name="…

c# app-config appsettings configurationmanager custom-sections