System.Xml.XmlDocument.BaseURI Property

Gets the base URI of the current node.

Syntax

public override string BaseURI { get; }

Value

Documentation for this section has not yet been entered.

Remarks

A networked XML document is comprised of chunks of data aggregated using various W3C standard inclusion mechanisms and therefore contains nodes that come from different places. The BaseURI tells you where these nodes came from.

For Document nodes, BaseURI returns the location of the XML document. For example, if the XmlDocument was loaded using the following call doc.Load("http://server/mydata.xml"), the BaseURI for the document node is http://server/mydata.xml. However, if the XmlDocument.Load(string) method is redirected by server to a different URI, BaseURI returns the original URI passed to the Load method.

This property is a Microsoft extension to the Document Object Model (DOM). For additional information on BaseURI and how it behaves with other node types, see XmlNode.BaseURI.

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0