Set up XmlReaderSettings : Xml Read « XML « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Schema;

    public class MainClass
    {
        public static void Main()
        {
            XmlReaderSettings settings = new XmlReaderSettings();
            settings.ProhibitDtd = false;
            settings.ValidationType = ValidationType.DTD;
            //settings.ValidationType=ValidationType.Schema;
            //settings.Schemas.Add("", "");

            settings.ValidationEventHandler += new ValidationEventHandler(OnValidationError);

            XmlReader reader=XmlReader.Create("value", settings);
            while (reader.Read())
            {
            }
            reader.Close();
        }
        static void OnValidationError(object sender, ValidationEventArgs e)
        {
            MessageBox.Show(e.Message);
        }
    }








30.4.Xml Read
30.4.1.To read from an XML file
30.4.2.Read XML from URL
30.4.3.Read/Write Xml document with FileStream
30.4.4.Load xml from xml file directly
30.4.5.Read XML content as double
30.4.6.Set up XmlReaderSettings
30.4.7.Set Book As Current