Uri.IsUnc Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets whether the specified Uri is a universal naming convention (UNC) path.
Assembly: System (in System.dll)
Property Value
Type: System.BooleanA Boolean value that is true if the Uri is a UNC path; otherwise, false.
| Exception | Condition |
|---|---|
| InvalidOperationException | This property is valid only for an absolute Uri instance. |
The IsUnc property is true if the specified Uri instance is a UNC path (such as \\server\folder or file://server/folder). This property always returns true if the URI has the file:// scheme and specifies a host component.
Show: