XmlSecureResolver::ResolveUri Method (Uri^, String^)

 

Resolves the absolute URI from the base and relative URIs by calling ResolveUri on the underlying XmlResolver.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
virtual Uri^ ResolveUri(
	Uri^ baseUri,
	String^ relativeUri
) override

Parameters

baseUri
Type: System::Uri^

The base URI used to resolve the relative URI.

relativeUri
Type: System::String^

The URI to resolve. The URI can be absolute or relative. If absolute, this value effectively replaces the baseUri value. If relative, it combines with the baseUri to make an absolute URI.

Return Value

Type: System::Uri^

The absolute URI or null if the relative URI cannot be resolved (returned by calling ResolveUri on the underlying XmlResolver).

Exception Condition
ArgumentException

relativeUri is null.

.NET Framework
Available since 1.1
Return to top
Show: