What are the derived classes from xmlReader and xmlWriter
Answer Posted / 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 View All Answers
What is the difference between .net core and .net framework?
explain how you can load related entities in ef (entity framework)?
what is msl?
what is client wins and store wins mode in entity framework concurrency?
What are sections?
What does a viewmodel do?
What is the difference between viewbag and viewdata in asp.net mvc?
Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
How we can call a javascript function on the change of a dropdown list in mvc?
Can a view be shared across multiple controllers? If yes, how we can do that?
What is the need of Action Filters in ASP.Net MVC
What are Model Binders in ASP.Net MVC?
Why is entity framework used?
What is mapping in entity framework? : Entity framework