Skip to content

Add note that Uri.Query and Fragment include the leading delimiter #8977

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions xml/System/Uri.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2173,7 +2173,7 @@ If you used an escaped string to construct this instance (for example, `"http://
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the escaped URI fragment.</summary>
<summary>Gets the escaped URI fragment, including the leading '#' character if not empty.</summary>
<value>URI fragment information.</value>
<remarks>
<format type="text/markdown"><![CDATA[
Expand Down Expand Up @@ -4241,7 +4241,7 @@ If you used an escaped string to construct this instance (for example, `"http://
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets any query information included in the specified URI.</summary>
<summary>Gets any query information included in the specified URI, including the leading '?' character if not empty.</summary>
<value>Any query information included in the specified URI.</value>
<remarks>
<format type="text/markdown"><![CDATA[
Expand Down
4 changes: 2 additions & 2 deletions xml/System/UriBuilder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ Note: In <see href="https://docs.microsoft.com/previous-versions/br230232(v=vs.1
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the fragment portion of the URI.</summary>
<summary>Gets or sets the fragment portion of the URI, including the leading '#' character if not empty.</summary>
<value>The fragment portion of the URI.</value>
<remarks>
<format type="text/markdown"><![CDATA[
Expand Down Expand Up @@ -1017,7 +1017,7 @@ The <xref:System.UriBuilder.Fragment> property contains any text following a fra
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets any query information included in the URI.</summary>
<summary>Gets or sets any query information included in the URI, including the leading '?' character if not empty.</summary>
<value>The query information included in the URI.</value>
<remarks>
<format type="text/markdown"><![CDATA[
Expand Down