--%>

DOT Net namespace

Explain the main classes given by the .NET namespace to process the XML files.

E

Expert

Verified

XmlTextReader: Gives forward only access to a stream of XML data and verifies whether or not an XML document is fine formed.

XmlTextWriter: Gives forward only way of producing streams or files having XML data which conforms to W3C XML 1.0.

XmlDocument: Gives navigating and editing features of nodes in an XML document tree. XmlDocument is the most commonly used class in ASP.NET applications which use XML documents.

XmlDataDocument: Gives support for XML and relational data in W3C XML DOM. You can employ this class with a dataset to give relational and non-relational views of similar set of data

XmlPathDocument: Gives a read-only cache for XML document processing by utilizing XSLT. This class is optimizied for XSLT processing and does not verify for the conformity of the W3C DOM.

XmlNodeReader: Gives forward-only access to the data symbolized by the XmlDocument or XmlDataDocument class

XslTransform: Gives support for XSLT 1.0 style sheet syntax which enables you to transform an XML document by employing XSL style sheets.

   Related Questions in Programming Languages

  • Q : Define the term Swizzling Define the

    Define the term Swizzling: It is the process of recursively writing the contents of an object through object serialization.

  • Q : XPATH selector Normal 0 false false

    Normal 0 false false

  • Q : Define Unbounded repetition Unbounded

    Unbounded repetition: The repetition where statements in a loop's body are executed an arbitrary number of times, according to the consequences of the statements in the loop's body. All of the loop control structures in the Java offer for unbounded re

  • Q : Explain the way to write the opening

    Explain the way to write the opening tag of an XHTML element.

  • Q : Aggregation and containment in the

    Illustrate the basic difference between Aggregation and containment in the Programming?

  • Q : Web based programming homework

    Component 2 Task b: Task Description Computing students at this University who study on undergraduate courses require a method to view their module marks and to see how they are progressing on the module. You have been asked to develop a web

  • Q : Create an applet of bounces in JAVA

    Create an applet that bounces a blue ball inside an applet using Thread.  The ball (diameter is 10) will start at position (0,0).  When the ball hits the edge of the applet, the ball should bounce off the edge at a randomly selected angle between 20 and 60 d

  • Q : Define Thread Thread : It is a

    Thread: It is a lightweight procedure which is managed by the Java Virtual Machine (abbreviated as JVM). Support for threads is given by the Thread class in java.lang package.

  • Q : Reads a line of text and tests whether

    palindrome.asm -- reads a line of text and tests whether it is a palindrome. ## Register usage: ## $t1 - A. ## $t2 - B. ## $t3 - the character *A. ## $t4 - the character *B. ## $v0 - syscall parameter / return values. ## $a0 - s

  • Q : Problem on linear equations using Matlab

    Use Matlab to solve the following system of linear equations:2x + y + 3z = 12x + 6y + 8z = 36x + 8y + 18z = 5Capture Matlab code and the result in a text file.