Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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
- uriString
Type: System. . :: . .String
A string that identifies the resource to be represented by the Uri instance.
- 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.