The System.Configuration is a .net framework namespace contains the types that provide the programming model for handling configuration data.
Questions tagged [system.configuration]
88 questions
0
votes
0 answers
VB.Net 5.0 Core Console Application - System.Configuration (and My.Settings) unavailable
I need to set some persisting configuration info for the console app I'm writing with VB .Net Core (.Net 5.0).
Acc. to the documentation, System.Configuration should do the trick but Visual Studio goes: Imports statement unnecessary, and the My…
0
votes
1 answer
Problem/Errow when opening application Growtopia CCS
When I opening an app name Growtopia auto ccs it always says like this
[Img][1]
The details:
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must…

Bijak
- 19
- 1
0
votes
1 answer
Creating a custom ConfigurationElement with PropertyChanged event
I have a custom editable ConfigurationElement and generally I'm using it as a settings object for some of my classes. (by passing it through the constructor)
When I have an object from an external dll with its own settings properties (so I can't…

KBar
- 82
- 7
0
votes
1 answer
System.Configuration always saving default values
For my project I need a config that is stored in the same folder as the executable and can be easily accessed and edited by user. I found a solution to this problem in System.Configuration package, but now I am running into a problem. The problem is…

Dizzar
- 35
- 3
0
votes
0 answers
How to create a configuration file and use system.configuration dll in Visual Studio?
I want to use the the System.Configuration dll for my application.
So I made these actions:
Project > Add a new element > Add a Config file
But I couldn't find the .exe.config file in the list so I created a text file and put it in the same…

Clément
- 25
- 6
0
votes
1 answer
ConfigurationManager could not be found
I have a website based on react for frontend and .net MVC for the backend
I want to get the AppSettings methode in the ConfigurationManager, but VS tells me, that there is no ConfigurationManager type name in System.Configuration
I have a reference…

Dreadhorn
- 43
- 4
0
votes
1 answer
Child elements in c# ExeConfiguration (System.Configuration)
is it possible to add child objects to xml file using ExeConfiguration? I got stuck on this code and I can't manage to figure it out. I came up it's not that simple to just add an object to ConfigurationSection as ConfigurationElement. Is there any…

Przemysław P.
- 81
- 1
- 5
0
votes
0 answers
Can't resolve the reference 'System.Object System.Configuration.IConfigurationSectionHandler... Anyone encounter the same error?
I'm developing an application in Xamarin.IOS, after some updates I encountered the error below:
Can't resolve the reference 'System.Object
…

Tanrıverdi
- 1
- 4
0
votes
2 answers
get & upload json data from .conf file
file location Ex: http://localhost:8080/config/userlog.conf (file which having json data)
Below function is for read data from above file.
JSON Data in above file: {"datetime": "01/10/2018 16:33:20", "password": "password123",…

Vinay Kumar
- 3
- 6
0
votes
1 answer
Checking for duplicate keys using WPF and C#
I'm creating an application that will look AppSettings, pull those keys and their values up into a DataTable, use the DataTable to edit or add keys, check for duplicate keys once edited, and save them back to into AppSettings. I currently have three…
0
votes
2 answers
Getting connection string from App.config and using it in a Linq dataContext
How should I extract the following connection string and apply it to my Linq context? I know the Linq portion, but am weak with the System.Configuration section.