Share via


IsAbsoluteUri Property

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

Gets whether the Uri instance is absolute.

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

Syntax

'Declaration
Public ReadOnly Property IsAbsoluteUri As Boolean
public bool IsAbsoluteUri { get; }
public:
property bool IsAbsoluteUri {
    bool get ();
}
member IsAbsoluteUri : bool with get
function get IsAbsoluteUri () : boolean

Property Value

Type: System. . :: . .Boolean
A Boolean value that is true if the Uri instance is absolute; otherwise, false.

Remarks

This property is true if the string or Uri instance that was passed into the constructor can be parsed as an absolute Uri instance, which contains a scheme, an authority, and a path. Otherwise, the Uri instance is treated as relative and might omit the scheme or other URI components.

.NET Framework Security

See Also

Reference

Uri Class

System Namespace