ResolveUri()

XmlResolver::ResolveUri(SharedPtr<Uri>, String) method

When overridden in a derived class, resolves the absolute URI from the base and relative URIs.

virtual SharedPtr<Uri> System::Xml::XmlResolver::ResolveUri(SharedPtr<Uri> baseUri, String relativeUri)

Arguments

ParameterTypeDescription
baseUriSharedPtr<Uri>The base URI used to resolve the relative URI.
relativeUriStringThe 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

The absolute URI or nullptr if the relative URI cannot be resolved.

See Also