This topic has not yet been rated - Rate this topic

UriParser.IsWellFormedOriginalString Method

May 02, 2013

Indicates whether a URI is well-formed.

Namespace:  System
Assembly:  System (in System.dll)
protected virtual bool IsWellFormedOriginalString(
	Uri uri
)

Parameters

uri
Type: System.Uri
The URI to check.

Return Value

Type: System.Boolean
true if uri is well-formed; otherwise, false.

The IsWellFormedOriginalString method will return false if:

  • The string is not correctly escaped per RFC 2396.

  • The string represents an absolute URI that references an implicit file URI.

  • The string represents an absolute URI that is missing a forward slash before the path component.

  • The string contains unescaped backslashes, even if they will be treated as forward slashes.

Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.