UriParser.Resolve Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Called by Uri constructors and Uri.TryCreate() to resolve a relative URI.
Assembly: System (in System.dll)
protected virtual string Resolve( Uri baseUri, Uri relativeUri, out UriFormatException parsingError )
Parameters
- baseUri
- Type: System.Uri
A base URI.
- relativeUri
- Type: System.Uri
A relative URI.
- parsingError
- Type:
System.UriFormatException
%
Errors during the resolve process, if any.
| Exception | Condition |
|---|---|
| InvalidOperationException | baseUri parameter is not an absolute Uri - or - baseUri parameter requires user-driven parsing. |
Uri constructors and Uri.TryCreate() use Resolve to construct a URI from baseUri and relativeUri.
If a parsing error occurs, the returned string for the resolved relative Uri is null.
Show: