Which are the abstract classes available under system.xml namespace
Answer Posted / kirti
The System.XML namespace provides XML related processing ability in .NET framework. XmlReader and XMLWriter are the two abstract classes at the core of .NET Framework XML classes:
1. XmlReader provides a fast, forward-only, read-only cursor for processing an XML document stream.
2. XmlWriter provides an interface for producing XML document streams that conform to the W3C's XML standards.
Both XmlReader and XmlWriter are abstract base classes, which define the functionality that all derived classes must support.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is datacontrols?
how do you query in entity model when the result has a join from from different database other than the entity model?
What is the difference between renderaction and renderpartial?
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
In .net compact framework, can we free memory explicitly without waiting for garbage collector to free the memory?
What is associationset? : Entity framework
What is entitytype? : Entity framework
What is the difference between viewbag and viewdata in asp.net mvc?
What is iobjectset? : Entity framework
What is the difference between entity framework and mvc?
What is the difference between model and entity?
When using razor views, do you have to take any special steps to protect your asp.net mvc application from cross site scripting (xss) attacks?
What is the difference between old ADO.NET and Entity framework coding techniques?
how do you truncate a table using entity data model?
What is the 'page life cycle' of an ASP.NET MVC?