What are the derived classes from xmlReader and xmlWriter



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

Post New Answer

More Dot Net Framework Interview Questions

What is separation of concerns in asp.net mvc?

0 Answers  


Which filter executes first in an asp.net mvc application?

0 Answers  


How you deploy .NET assemblies

1 Answers  


Can you explain the page life cycle of mvc?

0 Answers  


What is the main difference between VS 2005 and VS 2003?

5 Answers   CTS, Satyam,






how do you query in entity model when the result has a join from from different database other than the entity model?

0 Answers   Microsoft,


What is .net framework used for?

0 Answers  


How route table has been created in asp.net mvc?

0 Answers  


How do you handle variable number of segments in a route definition?

0 Answers  


Explain representational state transfer (rest) in detail?

0 Answers  


How can I tell what .net framework is installed?

0 Answers  


Speaking of Boolean data types, what's different between C# and C/C++ ?

1 Answers  


Categories