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 |
Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).
What is a razor file?
What are the 2 ways of adding constraints to a route?
what is ssdl?
What is the role of the jit compiler in .net framework?
what are abstract classes? what is overriding?
What is serialization in .NET? What are the ways to control serialization?
What is difference between shared and public
Where is tempdata stored?
How do you initiate a string without escaping each backslash ?
What are the different authentication modes in the .NET environment?
What platforms does the .NET Framework run on?