Uri.IsWellFormedUriString Method
Assembly: System (in system.dll)
'Declaration Public Shared Function IsWellFormedUriString ( _ uriString As String, _ uriKind As UriKind _ ) As Boolean 'Usage Dim uriString As String Dim uriKind As UriKind Dim returnValue As Boolean returnValue = Uri.IsWellFormedUriString(uriString, uriKind)
public static boolean IsWellFormedUriString ( String uriString, UriKind uriKind )
public static function IsWellFormedUriString ( uriString : String, uriKind : UriKind ) : boolean
Parameters
- uriString
A URI.
- uriKind
The type of the URI in uriString.
Return Value
true if the string was well-formed in accordance with RFC 2396 and RFC 2732; else false.The string is considered poorly formed if one or more of the following are true:
| Error | Example |
|---|---|
| The string is not correctly escaped. | |
| The string is an absolute Uri that represents an implicit file Uri. | c:\\directory\filename |
| The string is an absolute Uri that is missing a slash before the path. | file://c:/directory/filename |
| The string contains unescaped backslashes even if they will be treated as forward slashes | http:\\host/path/file |
| The string represents a hierarchical absolute Uri and does not contain "://" | www.contoso.com/path/file |
| The parser for the UriScheme indicates that the original string was not well-formed. | The example depends on the scheme of the URI. |
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.