.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!



Home >> Articles >> LINQ >> Post New Resource Bookmark and Share

 Subscribe to Articles

Parse String and Create XML tree : LINQ to XML Part 4

Posted By :Dhananjay Kumar      Posted Date :03/03/2010   Points :25   Category: LINQ    URL: http://www.dhananjaykumar.net

Parse String and Create XML tree : LINQ to XML Part 4. In this article, I will show different way of parsing string to create XML tree using LINQ to XML.
 


Objective

In this article, I will show different way of parsing string to create XML tree using LINQ to XML.

What is Parsing of XML document?

Parsing of XML document means reading XML document, identifies the function of each of the document and then makes this information available in memory for rest of the program.

XElement.Parse () method
  1. This method is used to parse a string.
  2. This is an overloaded method.
Methods are as below.

parsingxml1.gif

2nd overloaded method is having a parameter LoadOptions; this parameter defines whether to preserve space line information or not.

LoadOptions enum

1. This is inside System.Linq namespace.
2. This enum is having 4 properties.

using System;
 
namespace System.Xml.Linq
{
  
  [Flags]
  public enum LoadOptions
  {

  PreserveWhitespace = 1,
  SetBaseUri = 2,  
  SetLineInfo = 4,
  }
}



Way #1 Parsing String to create XML Tree

In this sample, I will create a XML tree from string.
1. Using first method to create XML Tree.
2. There is only one parameter being passed.

XElement xmltree = XElement.Parse(@"<Address><Name>Dhananjay Kumar </Name> <Road> Padma Road </Road> </Address>");
Console.WriteLine(xmltree);


Output

parsingxml2.gif

In this sample, I will create a XML tree from string.
  1. Using second method to create XML Tree.
  2. There is two parameter being passed.
  3. We are passing preserve space as load options.
XElement xmltree = XElement.Parse(@"<Address><Name>Dhananjay Kumar </Name> <Road> Padma Road </Road> </Address>",LoadOptions.PreserveWhitespace);
Console.WriteLine(xmltree);


Output

We can see the difference in output. That white space is preserved.

parsingxml3.gif

Conclusion
 
In this article, I explained how to parse a string to create XML tree. Thanks for reading. 


Featured Articles


Best Practices No 5: - Detecting .NET application memory leaks
Memory leaks in .NET application have always being programmer's nightmare. Memory leaks are biggest problems when it comes to production servers. Productions servers normally need to run with least down time. Memory leaks grow slowly and after sometime they bring down the server by consuming huge chunks of memory. Maximum time people reboot the system, make it work temporarily and send a sorry note to the customer for the downtime. ... Read More
.NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.... Read More
How to improve your LINQ query performance by 5 X times ?
LINQ has been criticized by many early adopters for its performance issues. Well if you are just going to drag and drop using DBML code generator I am sure you will land up in to mess. Try doing this make a simple LINQ to SQL project using DBML and see your SQL profiler, I am sure you will never like to touch DBML code generator again. ... Read More
Responses

No response found. Be the first to respond this post

Post Comment
You must Sign In To post reply
Find More Articles on C#, ASP.Net, Vb.Net, SQL Server and more Here

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend