Home »

Which are the abstract classes available under system.xml namespace?

Question ListCategory: .NETWhich are the abstract classes available under system.xml namespace?
ethanbrown author asked 8 years ago
1 Answers
adamemliy16 author answered 8 years ago

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.

Please login or Register to Submit Answer