Skip to content
Merged
Changes from all 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
6 changes: 6 additions & 0 deletions xml/System/Uri.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2108,6 +2108,9 @@ If you used an escaped string to construct this instance (for example, `"http://

The <xref:System.Uri.Fragment%2A> property is not considered in any <xref:System.Uri.Equals%2A> comparison.

> [!NOTE]
> The property includes the leading delimiter (`#`), whereas the URI specification (RFC 3986) recognizes the fragment as the portion of a URI without the delimiter.

## Examples
The following example creates a <xref:System.Uri> instance and writes the fragment information to the console.

Expand Down Expand Up @@ -4218,6 +4221,9 @@ The following examples show a URI and the results of calling <xref:System.Uri.Ge

For more information on IRI support, see the Remarks section for the <xref:System.Uri> class.

> [!NOTE]
> The property includes the leading delimiter (`?`), whereas the URI specification (RFC 3986) recognizes the query as the portion of a URI without the delimiter.

## Examples
The following example writes the query `?date=today` to the console.

Expand Down