Click or drag to resize
Uri Constructor (String, UriKind)
Initializes a new instance of the System.Uri class with the specified URI. This constructor allows you to specify if the URI string is a relative URI, absolute URI, or is indeterminate.

Namespace: System
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public Uri(
	string uriString,
	UriKind uriKind
)

Parameters

uriString
Type: SystemString
A string that identifies the resource to be represented by the System.Uri instance.
uriKind
Type: SystemUriKind
Specifies whether the URI string is a relative URI, absolute URI, or is indeterminate.
See Also