Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion xml/System/Uri.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6030,7 +6030,8 @@ The following examples show a URI and the results of calling <xref:System.Uri.Ge
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Uri.UserEscaped%2A> property is set to `true` to indicate that the string used to create the <xref:System.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 <xref:System.Uri.UserEscaped> property was originally designed to indicate that the string used to create the <xref:System.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`. However, since the `dontEscape` parameter is now obsolete and always treated as `false`, this property always returns `false`.

## Examples
The following example creates a <xref:System.Uri> instance and determines whether it was fully escaped when it was created.
Expand Down