Uri.TryCreate Method (Uri, String, Uri%)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a new Uri using the specified base and relative String instances.

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

Syntax

Public Shared Function TryCreate ( _
    baseUri As Uri, _
    relativeUri As String, _
    <OutAttribute> ByRef result As Uri _
) As Boolean
public static bool TryCreate(
    Uri baseUri,
    string relativeUri,
    out Uri result
)

Parameters

  • result
    Type: System..::.Uri%
    When this method returns, contains a Uri constructed from baseUri and relativeUri. This parameter is passed uninitialized.

Return Value

Type: System..::.Boolean
A Boolean value that is true if the Uri was successfully created; otherwise, false.

Remarks

If this method returns true, the new Uri is in result.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

Uri Class

TryCreate Overload

System Namespace