Skip to content

Commit 3fb0345

Browse files
author
Ron Petrusha
authored
Added line breaks, other formatting changes (microsoft#685)
* Added line breaks, other formatting changes * additional formatting change
1 parent 3103529 commit 3fb0345

5 files changed

+18
-17
lines changed

Documentation/compatibility/connection-pool-blocking-period-for-azure-sql-databases-is-removed.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Investigating
1111

1212
### Change Description
1313
Starting with the .NET Framework 4.6.2, for connection open requests to known
14-
Azure SQL databases (*.database.windows.net, *.database.chinacloudapi.cn,
15-
*.database.usgovcloudapi.net, *.database.cloudapi.de), the connection pool
14+
Azure SQL databases (\*.database.windows.net, \*.database.chinacloudapi.cn,
15+
\*.database.usgovcloudapi.net, \*.database.cloudapi.de), the connection pool
1616
blocking period is removed, and connection open errors are not cached. Attempts
1717
to retry connection open requests will occur almost immediately after transient
1818
connection errors. This change allows the connection open attempt to be retried
1919
immediately for Azure SQL databases, thereby improving the performance of cloud-
2020
enabled apps. For all other connection attempts, the connection pool blocking
21-
period continues to be enforced.
21+
period continues to be enforced.<p/>
2222

2323
In the .NET Framework 4.6.1 and earlier versions, when an app encounters a
2424
transient connection failure when connecting to a database, the connection

Documentation/compatibility/horizontal-scrolling-and-virtualization.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ own virtualization in the direction orthogonal to the main scrolling direction
1818
<xref:System.Windows.Controls.DataGrid?displayProperty=name> with
1919
EnableColumnVirtualization="True"). The outcome of certain horizontal scrolling
2020
operations has been changed to produce results that are more intuitive and more
21-
analogous to the results of comparable vertical operations.
21+
analogous to the results of comparable vertical operations.<p/>
2222

2323
The operations include "Scroll Here" and "Right Edge", to use the names from the
2424
menu obtained by right-clicking a horizontal scrollbar. Both of these compute a
2525
candidate offset and call
26-
<xref:System.Windows.Controls.Primitives.IScrollInfo.SetHorizontalOffset(System.Double)>.
26+
<xref:System.Windows.Controls.Primitives.IScrollInfo.SetHorizontalOffset(System.Double)>.<p/>
2727

2828
After scrolling to the new offset, the notion of "here" or "right edge" may have
2929
changed because newly de-virtualized content has changed the value of
30-
<xref:System.Windows.Controls.Primitives.IScrollInfo.ExtentWidth?displayProperty=name>.
30+
<xref:System.Windows.Controls.Primitives.IScrollInfo.ExtentWidth?displayProperty=name>.<p/>
3131

3232
Prior to .NET Framework 4.6.2, the scroll operation simply uses the candidate offset, even
3333
though it may not be "here" or at the "right edge" any more. This results in
@@ -39,10 +39,10 @@ virtualized; let's suppose they are very wide, so that the
3939
<xref:System.Windows.Controls.Primitives.IScrollInfo.ExtentWidth?displayProperty=name>
4040
changes to 2000. The scroll ends with HorizontalOffset=800, and the thumb
4141
"bounces" back to near the middle of the scrollbar - precisely at 800/2000 =
42-
40%.
42+
40%.<p/>
4343

4444
The change is to recompute a new candidate offset when this situation occurs,
45-
and try again. (This is how vertical scrolling works already.)
45+
and try again. (This is how vertical scrolling works already.) <p/>
4646

4747
The change produces a more predictable and intuitive experience for the end
4848
user, but it could also affect any app that depends on the exact value of

Documentation/compatibility/previewlostkeyboardfocus-is-called-repeatedly-if-its-handler-shows-a-message-box.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Available
1212
### Change Description
1313

1414
Beginning in the .NET Framework 4.5, calling
15-
`System.Windows.Forms.MessageBox.Show` from a
15+
<xref:System.Windows.Forms.MessageBox.Show?displayProperty=nameWithType> from a
1616
<xref:System.Windows.UIElement.PreviewLostKeyboardFocus>
1717
handler will cause the handler to re-fire when the message box is closed,
1818
potentially resulting in an infinite loop of message boxes.
@@ -21,10 +21,11 @@ potentially resulting in an infinite loop of message boxes.
2121
- [ ] Build-time break
2222

2323
### Recommended Action
24-
There are two options to work around this issue -
24+
There are two options to work around this issue:
2525

2626
1. It may be avoided by calling `System.Windows.MessageBox.Show` instead of `System.Windows.Forms.MessageBox.Show`.
27-
2. It may be avoided by showing the message box from a <xref:System.Windows.UIElement.LostKeyboardFocus> event handler (as opposed to a <xref:System.Windows.UIElement.PreviewLostKeyboardFocus?displayProperty=name> event handler).
27+
2.
28+
3. It may be avoided by showing the message box from a <xref:System.Windows.UIElement.LostKeyboardFocus> event handler (as opposed to a <xref:System.Windows.UIElement.PreviewLostKeyboardFocus?displayProperty=name> event handler).
2829

2930
### Affected APIs
3031
* `M:System.Windows.ContentElement.add_PreviewLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventHandler)`

Documentation/compatibility/unicode-data-now-support-standard-v8_0-categories.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Minor
1010
Planned
1111

1212
### Change Description
13-
In .NET Framework 4.6.2, Unicode data in the framework has been
14-
upgraded from Unicode standard version 6.3 to version 8.0. When
15-
requesting Unicode character category in .NET Framework 4.6.2, some
13+
In .NET Framework 4.6.2, Unicode data has been
14+
upgraded from Unicode Standard version 6.3 to version 8.0. When
15+
requesting Unicode character categories in .NET Framework 4.6.2, some
1616
results might not match the results in previous .NET Framework
1717
versions. This change mostly affects Cherokee syllables and New Tai
1818
Lue vowels signs and tone marks.

Documentation/compatibility/x509certificate2_tostring(bool)-does-not-throw-now-when-_net-cannot-handle-the-certificate.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## X509Certificate2.ToString(bool) does not throw now when .NET cannot handle the certificate
1+
## X509Certificate2.ToString(Boolean) does not throw now when .NET cannot handle the certificate
22

33
### Scope
44
Edge
@@ -11,7 +11,7 @@ Available
1111

1212
### Change Description
1313

14-
Previously, this method would throw if `true` was passed for the verbose
14+
In .NET Framework 4.5.2 and earlier versions, this method would throw if `true` was passed for the verbose
1515
parameter and there were certificates installed that weren't supported by the
1616
.NET Framework. Now, the method will succeed and return a valid string that
1717
omits the inaccessible portions of the certificate.
@@ -22,7 +22,7 @@ omits the inaccessible portions of the certificate.
2222
### Recommended Action
2323

2424
Any code depending on
25-
<xref:System.Security.Cryptography.X509Certificates.X509Certificate2.ToString(System.Boolean)>
25+
<xref:System.Security.Cryptography.X509Certificates.X509Certificate2.ToString(System.Boolean)?displayProperty=nameWithType>
2626
should be updated to expect that the returned string may exclude some
2727
certificate data (such as public key, private key, and extensions) in some cases
2828
in which the API would have previously thrown.

0 commit comments

Comments
 (0)