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 disconnected scenario? : Entity framework
What is namespace of asp.net mvc?
How route table has been created in asp.net mvc?
What are the options can be configured in AJAX helpers?
Explain the advantages and disadvantages of ASP.Net MVC over ASP.NET?
What is razor code?
What is Layout in ASP.Net MVC?
What is Attribute Routing in ASP.Net MVC?
Where is tempdata stored?
Explain dependency resolution?
differences between poco, model first and data first approach?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
Explain representational state transfer (rest) in detail?
what is entity data model?
What are the versions of .net framework?