Share via


Uri Constructor (String, UriKind)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Initializes a new instance of the 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:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Sub New ( _
    uriString As String, _
    kind As UriKind _
)
public Uri(
    string uriString,
    UriKind kind
)
public:
Uri(
    String^ uriString, 
    UriKind kind
)
new : 
        uriString:string * 
        kind:UriKind -> Uri
public function Uri(
    uriString : String, 
    kind : UriKind
)

Parameters

  • kind
    Type: System. . :: . .UriKind
    Specifies whether the URI string is a relative URI, absolute URI, or is indeterminate.

Remarks

Relative and absolute URIs have different restrictions on their format. For example, a relative URI does not require a scheme or an authority. The value you specify in kind must match the type of URI passed in uriString. However, if RelativeOrAbsolute is specified, the URI string can be relative or absolute.

.NET Framework Security

See Also

Reference

Uri Class

Uri Overload

System Namespace