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 |
what do you mean by table-per-type?
How large is the .net framework 3.0? Does this change make the release larger?
Is the lack of deterministic destruction in .NET a problem
Will there be a .net compact framework 3.0 release with release of .net framework 3.0?
How do you handle variable number of segments in a route definition?
What is the purpose of a web form?
What is global assembly cache
When was .NET announced
What are the mobile devices supported by .net platform
How to set the debug mode
what are background threads? give ex?
Speaking of Boolean data types, what's different between C# and C/C++ ?