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's the difference between Java and .NET garbage collectors ?

1 Answers   BirlaSoft,


What is difference between Viewbag and Viewdata in ASP.NET MVC?

0 Answers   NA,


Which are the important namespaces used in ASP.Net MVC?

0 Answers  


Why string are called Immutable data Type

1 Answers  


How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?

0 Answers  






How we can invoke child actions in ASP.Net MVC?

0 Answers  


Iam using an asp.net application . i want to update one of my table in database at 4pm every day how it is possible.

6 Answers   ABC, Evalueserve,


Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).

0 Answers  


What is Partial Assembly References?

3 Answers   Microsoft,


How would you deploy your old applications with .net framework 4.0? Are the old applications compatible?

0 Answers  


How do you create shared assemblies ?

1 Answers  


Possible ways to prevent xss attacks on mvc application?

0 Answers  


Categories