Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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

 

Resolves the absolute URI from the base and relative URIs.

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

public:
[PermissionSetAttribute(SecurityAction::InheritanceDemand, Name = "FullTrust")]
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.

Exception Condition
ArgumentNullException

baseUri is null or relativeUri is null.

The absolute URI can be used as the base URI for any subsequent requests for entities that are relative to this URI.

Notes to Inheritors:

This method has an inheritance demand. Full trust is required to override the ResolveUri method.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft