Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Windows Phone 7.5 Data Cookbook

You're reading from   Windows Phone 7.5 Data Cookbook Over 30 recipes for storing, managing, and manipulating data in Windows Phone 7.5 Mango applications.

Arrow left icon
Product type Paperback
Published in Oct 2011
Publisher Packt
ISBN-13 9781849691222
Length 224 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ramesh Thalli Ramesh Thalli
Author Profile Icon Ramesh Thalli
Ramesh Thalli
Arrow right icon
View More author details
Toc

Navigating the XML file


In this recipe, let's look more into navigating the XML file. There are many ways to navigate. Here we will learn how to load the XML file directly and find specific information and return it using LINQ methods.

Getting ready

Let's add a new project called Recipe4_SearchXml to our Ch3_Recipes solution. Copy DataClass.cs and MyTasks.xml from the first recipe. Change the name of the page to SearchXml.

How to do it…

In the following steps, let's create an application to get the priority of a task by navigating the XML document:

  1. Let's use the MyTasks.xml we created earlier:

    <?xmlversion="1.0"encoding="utf-8" ?>
    <tasks>
      <taskname="name 1" notes="notes 1" priority="Low"datedue="03/01/2011" datecreated="02/01/2011"/>
    
      <taskname="name 2" notes="notes 2" priority="High"datedue="04/01/2011" datecreated="02/01/2011"/>
    
      <taskname="name 3" notes="notes 3" priority="Medium"datedue="05/01/2011" datecreated="02/01/2011"/>
    </tasks>
  2. In the XML file...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image