GetComponents Method
Collapse the table of content
Expand the table of content

UriParser.GetComponents Method

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

Gets the components from a URI.

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

protected virtual string GetComponents(
	Uri uri,
	UriComponents components,
	UriFormat format
)

Parameters

uri
Type: System.Uri
The Uri to parse.
components
Type: System.UriComponents
The UriComponents to retrieve from uri.
format
Type: System.UriFormat
One of the UriFormat values that controls how special characters are escaped.

Return Value

Type: System.String
A string that contains the components.

ExceptionCondition
ArgumentOutOfRangeException

format is invalid

- or -

components is not a combination of valid UriComponents values.

InvalidOperationException

uri requires user-driven parsing

- or -

uri is not an absolute URI. Relative URIs cannot be used with this method.

Use the GetComponents method to determine the value of various parts of the URI, such as the Scheme, Host, or Port.

The components are returned in the order that they appear in the URI. For example, if Scheme is specified, it appears first.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft