System.Xml.XmlReader Class
Information   Base Types   Related Resources

Represents a reader that provides fast, non-cached, forward-only access to XML data.

  • Namespace: System.Xml
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.1.4322
  • Assembly: System.XML.dll

  • System.Object
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (49)Discussions (462)MembersRotorChanges
    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!
    Asynchronous Command Execution in ADO.NET 2.0
    MSDN
    Get an overview of the new asynchronous execution functionality in ADO.NET 2.0, the scenarios it was developed to enable, plus some of the issues to keep in mind when using this feature.
    BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built
    http://www.kbalertz.com/
    (815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may...
    BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built
    Microsoft Support
    (815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may...
    BUG: "Cannot Implicitly Convert Type 'System.Data.DataSet'" Error When Application is Built
    Microsoft Support
    (815131) - You have a Web Service that has a Web Service method that returns an instance of a custom class. The class that is returned by the Web Service method implements the IXmlSerializable interface. If you use this Web Service in an application, you may...
    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.
    Commands in ADO .NET
    MSDN
    In ADO there are three possible ways to update a data source. One is through direct SQL commands, like INSERT, DELETE and UPDATE, or more complex and sophisticated stored procedures. Another is through batch update, where you submit a new image of a certain table to the server all at once. The third way is through direct fields update using server cursors.
    Consuming Amazon WebServices
    http://www.code101.com/
    Consuming Amazon WebServices
    Data Access Application Block for .NET
    MSDN
    The Data Access Application Block encapsulates performance and resource management best practices and can easily be used as a building block in your own .NET application. If you use it, you will reduce the amount of custom code you need to create, test, and maintain.
    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.
    Dr. GUI.NET #7
    MSDN
    In this article Dr GUI discusses how file and console I/O is achieved in .NET. The article includes a detailed discussion on streams.
    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.
    Extreme XML: Combining XPath with the XmlReader
    MSDN
    Dare Obasanjo discusses the XPathReader, which provides the ability to filter and process large XML documents in an efficient manner.
    High-Performance .NET Application Development & Architecture
    DotNetJunkies
    It has always been a goal of project architects to plan an effective strategy from the ground up in regards to an new application. All relevant factors are taken into consideration with respect to the application, from its design and layout to a functional website infrastructure.
    How to read the XML data from a file by using Visual C++ .NET
    Microsoft Support
    (815658) - This article describes how to use the XmlTextReader class to read the XML data from a file. The XmlTextReader class provides direct parsing and tokenizing of the XML data. The XmlTextReader class also implements the XML 1.0 specification, in addition...
    How to read the XML data from a file by using Visual C++ .NET
    http://www.kbalertz.com/
    (815658) - This article describes how to use the XmlTextReader class to read the XML data from a file. The XmlTextReader class provides direct parsing and tokenizing of the XML data. The XmlTextReader class also implements the XML 1.0 specification, in addition...
    How to read XML data from a URL by using Visual C++ .NET
    Microsoft Support
    (815659) - This article describes how to use the XmlTextReader class to read XML from a URL. The streamed information can come from a variety of sources, such as a byte stream from a server, from a file, or from a TextReader class. back to the top Requirements...
    How to read XML data from a URL by using Visual C++ .NET
    http://www.kbalertz.com/
    (815659) - This article describes how to use the XmlTextReader class to read XML from a URL. The streamed information can come from a variety of sources, such as a byte stream from a server, from a file, or from a TextReader class. back to the top Requirements...
    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: Locate and Replace Special Characters in an XML File with Visual Basic .NET (Q308060)
    http://www.kbalertz.com/
    This article describes how to replace special characters in an Extensible Markup Language (XML) file by using Visual Basic .NET.
    HOW TO: Locate and Replace Special Characters in an XML File with Visual C# .NET
    http://www.kbalertz.com/
    (316063) - This article describes how to replace special characters in an Extensible Markup Language (XML) file by using Visual C# .NET. Description of the Technique XML predefines the following five entity references for special characters that would otherwise...
    HOW TO: Read XML Data into a DataSet by Using Visual Basic .NET
    Microsoft Support
    (309702) - This article demonstrates how to read Extensible Markup Language (XML) data into an ADO.NET DataSet object. Requirements The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need: Microsoft...
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com