Uri.UserEscaped Property

 

Indicates that the URI string was completely escaped before the Uri instance was created.

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

Public ReadOnly Property UserEscaped As Boolean

Property Value

Type: System.Boolean

A Boolean value that is true if the dontEscape parameter was set to true when the Uri instance was created; otherwise, false.

The UserEscaped property is set to true to indicate that the string used to create the Uri instance was completely escaped before it was passed to the constructor; that is, the dontEscape parameter of the constructor call was set to true.

The following example creates a Uri instance and determines whether it was fully escaped when it was created.

    Dim uriAddress As New Uri("http://user:password@www.contoso.com/index.htm ")
    Console.WriteLine(uriAddress.UserInfo)
    Console.WriteLine("Fully Escaped {0}", IIf(uriAddress.UserEscaped, "yes", "no")) 'TODO: For performance reasons this should be changed to nested IF statements

End Sub 'SampleUserInfo 

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: