System.Xml Namespace
This namespace provides support for processing XML documents. It includes classes for reading, writing, and manipulating XML data in various formats, including DOM (Document Object Model) and stream-based processing.
The System.Xml
namespace is a core part of the .NET Framework for working with XML. It offers a robust and efficient way to handle XML documents, adhering to W3C standards.
Classes
- XmlAttribute Represents an attribute of an element.
- XmlCDataSection Represents a CDATA section.
- XmlComment Represents an XML comment.
- XmlDocument Represents an XML document and provides a way to load, navigate, and modify XML data.
- XmlDocumentType Represents an XML document type declaration.
- XmlElement Represents an element in an XML document.
- XmlException Represents errors during XML processing.
- XmlNode Represents a node in the XML document object model (DOM).
- XmlNodeList Represents a list of nodes.
- XmlNotation Represents an XML notation.
- XmlProcessingInstruction Represents a processing instruction.
- XmlReader Represents a forward-only, read-only stream of XML data.
- XmlResolver Abstract base class for resolving URIs to resources.
- XmlSecType Represents an XML security type.
- XmlSignificantWhitespace Represents whitespace that is significant according to the XML document's DTD.
- XmlSpaceWhiteSpace Represents whitespace that is not significant.
- XmlText Represents an XML text node.
- XmlUriResolver Resolves XML URIs.
- XmlWriter Represents a writer for creating XML documents.
- XmlWriterQuotas Represents quotas for an XmlWriter.
Structs
- XmlNamespace Represents an XML namespace.
Interfaces
- IXmlLineInfo Provides information about the line number and line position of an XML node.
- IXmlNamespaceInfo Provides information about XML namespaces.
- IXmlNode Represents a node in an XML document.
- IXmlReader Represents a forward-only, read-only stream of XML data.
- IXmlReader.2 Represents a forward-only, read-only stream of XML data.
- IXmlWriter Represents a writer for creating XML documents.
Enums
- NodeListType Specifies the type of NodeList.
- XmlSpace Specifies how to interpret the xml:space attribute.
Delegates
- ValidationEventHandler Represents the method that will handle the ValidationEventHandler event.
For more detailed information, please refer to the official MSDN documentation.