NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlReader.BaseURI

Gets the base URI of the current node.

[Visual Basic]
MustOverride Public ReadOnly Property BaseURI As String
[C#]
public string BaseURI {abstract get;}
[C++]
public: __property virtual String* get_BaseURI() = 0;
[JScript]
public abstract function get BaseURI() : String;

Property Value

The base URI of the current node. The string returned is also in NameTable.

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. DTD Entities are an example of this--but this is not limited to DTD's. The BaseURI tells you where these nodes came from. If there is no base URI for the nodes being returned (maybe they were parsed from an in-memory string), String.Empty is returned.

See Also

XmlReader Class | XmlReader Members | System.NewXml Namespace