DOM feature check : DOM : XML C# Source Code


Custom Search

C# Source Code » XML » DOM »

 

DOM feature check








    

using System;
using System.Xml;

class DomFeatureChecker {

  private static readonly string [] versions = new string [] {
    "1.0", "2.0" };
  
  private static readonly string [] features = new string [] { 
    "Core", "XML", "HTML", "Views", "Stylesheets", "CSS", 
    "CSS2", "Events", "UIEvents", "MouseEvents", "MutationEvents", 
    "HTMLEvents", "Range", "Traversal" };
  
  public static void Main(string[] args) {
    XmlImplementation impl = new XmlImplementation();
  
    foreach (string version in versions) {
      foreach (string feature in features) {
        Console.WriteLine("{0} {1}={2}", feature, version, 
          impl.HasFeature(feature, null));
      }
    }
  }
}


           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo XML
» DOM