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
How to change the action name in ASP.Net MVC?
What is route config?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
What are actions in asp.net mvc?
What is partialview in asp.net mvc?
What are the components required to create a route in mvc?
Explain test driven development (tdd) ?
What is the difference between old ADO.NET and Entity framework coding techniques?
why DotNetFramework is included in building a software
What is the benefit of entity framework?
what is code first approach?
What is the meaning of unobtrusive javascript? Explain us by any practical example.
What is the use .glimpse in mvc?
Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?
how do you mark a property as required? For example, for a project, the name is a required field.