This documentation is archived and is not being maintained.
UriParser::Resolve Method
Visual Studio 2010
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, [OutAttribute] 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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: