You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/compatibility/previewlostkeyboardfocus-is-called-repeatedly-if-its-handler-shows-a-message-box.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Available
12
12
### Change Description
13
13
14
14
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
handler will cause the handler to re-fire when the message box is closed,
18
18
potentially resulting in an infinite loop of message boxes.
@@ -21,10 +21,11 @@ potentially resulting in an infinite loop of message boxes.
21
21
-[ ] Build-time break
22
22
23
23
### Recommended Action
24
-
There are two options to work around this issue -
24
+
There are two options to work around this issue:
25
25
26
26
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).
Copy file name to clipboardExpand all lines: Documentation/compatibility/x509certificate2_tostring(bool)-does-not-throw-now-when-_net-cannot-handle-the-certificate.md
+3-3
Original file line number
Diff line number
Diff 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
2
2
3
3
### Scope
4
4
Edge
@@ -11,7 +11,7 @@ Available
11
11
12
12
### Change Description
13
13
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
15
15
parameter and there were certificates installed that weren't supported by the
16
16
.NET Framework. Now, the method will succeed and return a valid string that
17
17
omits the inaccessible portions of the certificate.
@@ -22,7 +22,7 @@ omits the inaccessible portions of the certificate.
0 commit comments