Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 172777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:13:33+00:00 2026-05-11T13:13:33+00:00

I am seeing simple examples regarding custom configuration in .NET. My case is a

  • 0

I am seeing simple examples regarding custom configuration in .NET. My case is a bit more complex, with nested nodes.

I’d like to be able to read this from the configuration file:

 <environments>  <environment name='live' url='http://www.live.com'>   <server name='a' IP='192.168.1.10'></server>   <server name='b' IP='192.168.1.20'></server>   <server name='c' IP='192.168.1.30'></server>       </environment>  <environment name='dev' url='http://www.dev.com'>   <server name='a' IP='192.168.1.10'></server>   <server name='c' IP='192.168.1.30'></server> </environment>  <environment name='test' url='http://www.test.com'>   <server name='b' IP='192.168.1.20'></server>   <server name='d' IP='192.168.1.40'></server> </environment></environments>  

If anyone could provide some code for that, I’d appreciate it.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:13:34+00:00Added an answer on May 11, 2026 at 1:13 pm

    You can read this by implementing custom configuration classes inheriting from the ConfigurationElement class.

    Here is an example of the ‘server’ element:

    public class ServerElement: ConfigurationElement {     [ConfigurationProperty('name', IsRequired = true, IsKey = true)]     public string Name     {         get { return ((string)base['name']); }         set { base['name'] = value; }     }      ... } 

    The environment element is actually a collection and could be implemented like this:

    public class EnvironmentElement: ConfigurationElementCollection {     protected override ConfigurationElement CreateNewElement(string elementName)     {         return new ServerElement(...);     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 207k
  • Answers 207k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In the file .screenrc in your home directory, add the… May 12, 2026 at 9:26 pm
  • Editorial Team
    Editorial Team added an answer If you check the section on compile-time constants in the… May 12, 2026 at 9:26 pm
  • Editorial Team
    Editorial Team added an answer Instead of power.write("volt k"), use: power.write("volt " + str(k)) ^… May 12, 2026 at 9:26 pm

Related Questions

I'm reading in a large text file with 1.4 million lines that is 24
I'm currently working on a small 2D game-engine in C++, but I am now
I am attempting to read audio data via AudioQueue. When I do so, I
I am looking for a more sophisticated way of using Linq to SQL. I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.