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

  • SEARCH
  • Home
  • 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 3352464
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:02:00+00:00 2026-05-18T02:02:00+00:00

Assuming I have a xdocument called xd, with the following xml already created. <Alert>

  • 0

Assuming I have a xdocument called xd, with the following xml already created.

<Alert>
  <Source>
    <DetectTime>12:03:2010 12:22:21</DetectTime>
  </Source>
</Alert>

How would I be able to add another Alert element, such that the xml becomes:

<Alert>
  <Source>
    <DetectTime>12:03:2010 12:22:21</DetectTime>
  </Source>
</Alert>
<Alert>
</Alert>

Adding an additional elements seems to be fairly easy, but when adding in a top level element it excepts.

  • 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. Editorial Team
    Editorial Team
    2026-05-18T02:02:00+00:00Added an answer on May 18, 2026 at 2:02 am

    Your desired XML structure is invalid; you need a root element in order to add another “Alert” node. The following code shows how to add it when a root node exists:

    var xdoc = XDocument.Parse(@"<root>
        <Alert>
        <Source>
            <DetectTime>12:03:2010 12:22:21</DetectTime>
        </Source>
        </Alert>
    </root>");
    xdoc.Root.Add(new XElement("Alert"));
    Console.WriteLine(xdoc);
    

    The above code produces <Alert /> since no child nodes are added to it (this will change once you add to it). If you want the closing tag as you have shown you can use xdoc.Root.Add(new XElement("Alert", String.Empty)); instead.

    To verify that your desired output has an invalid structure you can try parsing it using XDocument.Parse similar to what I’ve shown above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Assuming I have an element called menu how would I remove this element from
assuming I have the following array: views = [ { :user_id => 1, :viewed_at
Assuming I have a column called A and I want to check if A
Assuming I have the following two JQuery functions - The first, which works: $(#myLink_931).click(function
Assuming you have a DOM tree with nested tags, I would like to clean
assuming that you have the following sentence in a requirements document The system has
Assuming the following directory structure, htdocs/ images/ css/ .htaccess system/ index.php ... I would
Assuming I have a numerical string: var foo = 0; Assume I want to
Assuming I have a ASP.NET MVC 3 application that runs in a web farm
Assuming i have a post model with created_at, title, and id. How can i

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.