XmlUriResolver Class

Namespace: System.Xml

Provides a default implementation of the XmlResolver abstract class that uses URIs to resolve external XML resources.

Inheritance Hierarchy

System.Object
    System.Xml.XmlResolver
        System.Xml.XmlUrlResolver

Syntax


public sealed class XmlUrlResolver : XmlResolver
            

Remarks

The XmlUrlResolver class resolves URIs to resources. It is used by the XmlDocument, XmlReader, and XmlWriter classes to load and save XML documents.

The XmlUrlResolver class supports resolving URIs to local files, network resources, and embedded resources. It also supports resolving relative URIs to base URIs.

The XmlUrlResolver class can be configured with a System.Net.ICredentials object to provide credentials for accessing network resources.

Members

Constructors

Methods

Properties

See Also

Back to top