Issues that this hotfix rollup fixes
ASP.NET issueContention and bad performance on
System.Web.BufferAllocator when you run a web application on computers that have more than 32 cores.
Fix: The contention has been eliminated by removing the global lock in
System.Web.BufferAllocator.
Windows Forms issueThe Windows Forms
PrintPreviewDialog UI is initialized very slowly when the following conditions are true:
- A network printer is used.
- User preferences for this printer, such as duplex settings, are modified.
We added a performance optimization to this scenario. If page settings are not modified for a specific page, printer settings for this page are not reapplied (by accessing the printer spooler). If the application modifies printer settings by using the
QueryPageSettings event handler, print preview generation performance for the affected pages is not improved, even if the
opt-in flag is set.
In order to opt in to this optimization, the following key should be added to the app.config file, depending on your version of the .NET Framework.
NET Framework 4.5.2:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
< appSettings >
< add key="OptimizePrintPreview" value="true" />
< /appSettings >
</configuration>
.NET Framework 4.6 or a later version:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
< runtime>
< AppContextSwitchOverrides value = "Switch.System.Drawing.Printing.OptimizePrintPreview=true" />
< /runtime>
</configuration>
If an application can run on either version of the .NET Framework, use both switches in the same file.
To opt out, remove the switch, or set the values to
false.
ClickOnce issueClickOnce has been updated to support TLS 1.1 and 1.2. ClickOnce automatically detects which TLS protocol is required at runtime. There are no extra steps required in the ClickOnce application to enable this.
Note ClickOnce continues to support TLS 1.0 for the foreseeable future, even though it is
no longer considered PCI-compliant.