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 orm entity framework?
How can I return string result from action in asp.net mvc?
What is the benefit of entity framework?
What is filters in web api?
what is entity data model?
Is .net framework 4.8 the last version?
What is the difference between viewbag and viewdata in mvc?
What is a model in programming?
What is .net core framework?
Explain what platforms does the .net framework run on?
What is MVVM design pattern?
How do you specify comments using razor syntax?
What are ajax helpers in asp.net mvc?
What are the two ways to add constraints to a route?
What is oauth in web api?