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 ViewStart Page in ASP.Net MVC?
What is the "helperpage.isajax" property?
What are the advantages of mvc over asp.net?
how do you mark a property as required? For example, for a project, the name is a required field.
Explain the methods used to render the views in mvc?
Can any particular component of .net framework 3.0 be removed?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
What is presentation framework?
Explain .Net Framework? Why we use it?
Explain how you can send the result back in JSON format in MVC?
What is .net framework in simple terms?
what is deferred loading(lazy loading)?
What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?
What is .net framework used for?
what do you mean by navigation property?