Multimobile Development: Building Applications for any Smartphone
System.Xml.XPath.XPathNavigator Class
Information   Base Types   Related Resources

Reads data from any data store using a cursor model.

  • Namespace: System.Xml.XPath
  • Assembly: System.Xml.dll

  • System.Xml.XPath.XPathItem
    System.ICloneable
  • View this type on MSDN
  • Search for this type on MSDN using MSDN's own search engine
  • Google for this type - all Web
  • Google for this type - MSDN only
    Articles (29)Discussions (308)MembersRotor
    Articles

    Page: 12
    .NET Tools: Ten Must-Have Tools Every Developer Should Download Now
    MSDN
    10 Tools you can use to make your development easier, faster and more fun!
    Advanced Basics: Digital Grandma
    MSDN
    Duncan shows you how to build a client application that pulls down new images from a web server onto his mother's machine to give her the functionality of a 'digital photo frame'.
    Building a Custom Data Provider for Use with the .NET Data Access Framework
    MSDN
    The System.Data.dll assembly in the .NET Framework contains namespaces whose base classes can be used to create custom data providers. These namespaces also define a number of data access interfaces and base classes that let developers create data providers that will interoperate with other custom providers. Using the ADO.NET classes Connection, Command, DataReader, and DataAdapter, writing a provider is easier than writing one for OLE DB. This article explains these classes and their implementation, and how they can be used to write a variety of different kinds of data providers.
    Building Practical Solutions with EXSLT
    MSDN
    Oleg Tkachenko shows how to make XML programming easier, and explains how to boost your productivity using XSLT and XPath extensions provided by the EXSLT.NET library.
    Code Generation in the .NET Framework Using XML Schema
    MSDN
    Learn the difference between typed datasets and classes generated by the xsd.exe tool. Extend this process by reusing the infrastructure classes supporting it, staying compatible with the XmlSerializer.
    Custom Objects From the App.Config file
    The Code Project
    Defining custom objects in the App.Config file, and retrieving them via the IConfigurationSectionHandler Interface.
    Data Access Support in Visual Studio.NET (Whidbey)
    DotNetJunkies
    Within this is an overview of the data access support in ADO.NET, covered by the System.Data and System.Xml namespaces. This white paper details the innovations and enhancements in the data access layer in Whidbey when retrieving data from data sources, particularly SQL Server. It covers the growth of ADO.NET in Whidbey to encompass the relational, object and XML data models, and explains typical usage scenarios for each with development guidelines and recommendations.
    Exposing Proprietary Data the .NET Way
    MSDN
    The .NET Framework comes with the OLE DB managed provider, which is meant to be a bridge that gives you immediate access to all the existing OLE DB providers. This component saves your current investments, as applications can continue successfully calling into existing OLE DB providers. The point, though, is another. In .NET, exposing proprietary data requires a more thoughtful choice, mostly because you have multiple and equally powerful options from which to choose.
    Generating String Resource Accessors for .NET
    The Code Project
    This article presents a utility written in Visual Basic .NET that generates a C# or VB.NET source file from a .resx or .resources file. The resulting class enables compile-time checking of resource string identifier names and the numbers of format items.
    How to specify fully qualified element names in XPath queries by using Visual C++ .NET
    http://www.kbalertz.com/
    (815677) - The step-by-step article describes how to specify fully-qualified element names in the NamespacePrefix:ElementName format to select nodes in an XmlDocument object. back to the top Create the XML file Paste the following XML code in Notepad, or a text...
    How to specify fully qualified element names in XPath queries by using Visual C++ .NET
    Microsoft Support
    (815677) - The step-by-step article describes how to specify fully-qualified element names in the NamespacePrefix:ElementName format to select nodes in an XmlDocument object. back to the top Create the XML file Paste the following XML code in Notepad, or a text...
    How to use XML in connected and disconnected ADO.NET applications in Visual C++ .NET 2003
    http://www.kbalertz.com/
    (815671) - XML is a fundamental part of Microsoft ADO.NET and XML Web Services. This article describes how to use XML in connected and disconnected ADO.NET applications: Connected ADO.NET applications can query Microsoft SQL Server to return an XML result and...
    How to use XML in connected and disconnected ADO.NET applications in Visual C++ .NET 2003
    http://www.kbalertz.com/
    (815671) - XML is a fundamental part of Microsoft ADO.NET and XML Web Services. This article describes how to use XML in connected and disconnected ADO.NET applications: Connected ADO.NET applications can query Microsoft SQL Server to return an XML result and...
    HOW TO: Navigate XML with the XPathNavigator Class by Using Visual C# .NET
    http://www.kbalertz.com/
    (308343) - This step-by-step article describes how to navigate Extensible Markup Language (XML) documents with an XPathNavigator object that is created from an XPathDocument object. This sample loads an XPathDocument object with XML data, creates an...
    HOW TO: Specify Fully Qualified Element Names in XPath Queries Using Visual Basic .NET (Q308062)
    http://www.kbalertz.com/
    When you use the
    HOW TO: Specify Fully Qualified Element Names in XPath Queries Using Visual Basic .NET (Q308062)
    Microsoft Support
    When you use the
    HOW TO: Use XML in Connected and Disconnected ADO.NET Applications (Q307224)
    Microsoft Support
    This article demonstrates how to use XML in connected and disconnected ADO.NET applications. Connected ADO.NET applications can query SQL Server to return an XML result and then use the XmlReader class to iterate through the rows of XML data. Disconnected ADO.NET applications can use a DataSet object to pass data in XML format between the different tiers in a distributed system.
    Implementing XmlReader Classes for Non-XML Data Structures and Formats
    MSDN
    Developers can create a notation for any data structure using only elements and attributes, and can access any data structure with an XmlReader or XmlDocument—as long as they can "translate" it to XML.
    Programmatically using ADO.NET and XML
    The Code Project
    With ADO.NET, a database can be regarded as a virtual XML document. XPath query and XSLT transformation are naturally available.
    Reading and Writing XML Documents
    C# Corner
    In this article you will see how to read and write XML documents in Microsoft .NET using C# language. First I will discuss XML .NET Framework Library namespace and classes in brief. Then we will read and write XML documents. At the end of this article, I will show you how to take advantage of ADO.NET and XML .NET model to read and write XML documents from relational databases and vice versa.
    Reading, Storing and Transforming XML Data in .NET
    DotNetJunkies
    This article illustrates a mixture of common .NET methods for formatting and presenting in a readable fashion any XML document you may encounter. The latest hype with XML Web Services and even the .NET Framework itself relies on XML as its backbone, therefore this is no light matter.
    Resolving the Unknown: Building Custom XmlResolvers in the .NET Framework
    MSDN
    Get under the hood of the XmlResolver class in System.Xml and review how to create your own implementations of XmlResolvers that allow you to retrieve XML documents from alternative data sources.
    Squarified Treemaps in XAML & C# using Microsoft Longhorn
    The Code Project
    Data Visualisation using Squarified Treemaps
    Using CLR Integration in SQL Server 2005
    MSDN
    Compare CLR-based programming models with SQL Server models such as Transact SQL and extended stored procedures. Get tips on how to choose a model, code samples, and more.
    What's New in System.Xml for Visual Studio 2005 and the .NET Framework 2.0 Release
    MSDN
    Enhance XML support in your applications with the XML APIs in System.Xml and the .NET Framework 2.0.
    Ad
    BootFX
    Reliable and powerful .NET application framework.
    iOS, Android and Windows Phone Development Training and Consultancy
    Hosted by RackSRV Communications
     
    Multimobile Development: Building Applications for any Smartphone
    Copyright © AMX Software Ltd 2008-2010. Portions copyright © Matthew Baxter-Reynolds 2001-2010. All rights reserved.
    Contact Us - Terms of Use - Privacy Policy - 4.0.30129.1734