What are the derived classes from xmlReader and xmlWriter
Answer / kirti
Both XmlReader and XmlWriter are abstract base classes, which define the functionality that all derived classes must support.
There are three concrete implementations of XmlReader:
1.XmlTextReader
2.XmlNodeReader
3.XmlValidatingReader
There are two concrete implementations of XmlWriter:
1.XmlTextWriter
2.XmlNodeWriter
XmlTextReader and XmlTextWriter support reading data to/from text-based stream, while XmlNodeReader and XmlNodeWriter are designed for working with in-memory DOM tree structure. The custom readers and writers can also be developed to extend the built-in functionality of XmlReader and XmlWriter.
Is This Answer Correct ? | 0 Yes | 0 No |
What does assert() method do?
1 Answers MCN Solutions, Siebel Systems,
how many ways for pass the parameters in the fuction in c#
How to use Jquery Plugins in ASP.Net MVC validation?
Where is tempdata stored?
What is side by side Execution ?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
What is strong name?
Tell me about the internal working of Garbage collector?
what is linq to entities?
What is the difference between windows vista and .net framework 3.0 ?
mention what is csdl, ssdl and msl sections in an edmx file?
What is web api‘s in asp.net mvc 4 ?