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 shadowing?

6 Answers   IBM,


What is the common property in .net?

1 Answers   Nth Solution,


What is the difference between .net core and .net framework?

0 Answers  


Why string are called Immutable data Type

1 Answers  


What's the access level of the visibility type internal ?

1 Answers  


Difference between Dispose and Finalize method

1 Answers  


Where The Inheritence is useful?How we decide the situation of inheritence

2 Answers  


Explain tempdata in mvc?

0 Answers  


What is model first? : Entity framework

0 Answers  


js fn to go to the particular page when enter is clicked

1 Answers  


what are background threads? give ex?

3 Answers   CSC, Kanbay,


Explain dependency resolution?

0 Answers  


Categories