Uri.AbsoluteUri Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the absolute URI.

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

Syntax

'Declaration
Public ReadOnly Property AbsoluteUri As String
public string AbsoluteUri { get; }

Property Value

Type: System.String
A String containing the entire URI.

Exceptions

Exception Condition
InvalidOperationException

This property is valid only for an absolute Uri instance.

Remarks

The AbsoluteUri property includes the entire URI stored in the Uri instance, including all fragments and query strings.

Examples

The following example writes the complete contents of the Uri instance to the console. In the example shown, https://www.contoso.com/catalog/shownew.htm?date=today is written to the console.

  Dim baseUri As New Uri("https://www.contoso.com")
  Dim myUri As New Uri(baseUri, "catalog/shownew.htm?date=today")

  outputBlock.Text &= "Uri.AbsoluteUri: "
  outputBlock.Text &= myUri.AbsoluteUri
  outputBlock.Text &= vbCrLf

      Uri baseUri= new Uri("https://www.contoso.com");
      Uri myUri = new Uri(baseUri,"catalog/shownew.htm?date=today");

      outputBlock.Text += "Uri.AbsoluteUri: ";
      outputBlock.Text += myUri.AbsoluteUri;
      outputBlock.Text += "\n";

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference