Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

This article describes hotfix rollup 3099845, which is available for the .NET Framework 4.5.2, 4.5.1, and 4.5. For more information about the issues that the hotfix rollup fixes, see the "More Information" section.

Resolution

Download information

The hotfix that corresponds to KB3099845 has been superseded with the latest updates of .NET Framework, which contain all fixes that were previously included in KB3099845. It is recommended to install the latest updates of .NET Framework.

For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:

119591 How to obtain Microsoft support files from online services Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.

More Information

Prerequisites

To apply this hotfix, you must have the .NET Framework 4.5.2, 4.5.1, or 4.5 installed.

Restart requirement

You must restart the computer after you apply this hotfix if any affected files are being used. We recommend that you exit all .NET Framework-based applications before you apply this hotfix.

Hotfix replacement information

This hotfix package doesn't replace a previously released hotfix package.
 

Issues that this hotfix rollup fixes

Issue 1

The System.Windows.Markup.XamlWriter.Save method can’t turn off indentation for an element that has the xml:space="preserve" setting configured. This causes additional spaces to be added to the element. For example, a paragraph represented by the following XAML code will be transformed incorrectly by the XamlWriter.Save method:
 

<Paragraph>
<Span>
<Run Text="Test"/>
</Span>
<Run Text=" "/>
</Paragraph>

Incorrect XAML created by XamlWriter.Save method:

<?xml version="1.0" encoding="utf-16"?>
<Section xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Paragraph xml:space="preserve">
<Span>Test</Span> <Run> </Run></Paragraph>
</Section>

Expected (correct) XAML:

<?xml version="1.0" encoding="utf-16"?>
<Section xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Paragraph xml:space="preserve"><Span>Test</Span> <Run> </Run></Paragraph>
</Section> 

Issue 2

Some content is missing in printouts if transparency is used on Windows 7 and earlier versions. For example, some content in a table border could be missing and result in a blank area in printouts.
 

Issue 3

Some content is blurry in printouts if transparency is used in Windows 7 and earlier versions. This occurs even when you set the print to photographic level quality.

This hotfix improves the output quality that is obtained by using the OutputQuality.Photographic value. Be aware that documents that have better quality require larger print spooler files and longer wait times. If these side effects aren’t desirable, you can adjust the output quality of the print to High.
 

Issue 4

When you run a Windows Presentation Foundation (WPF) touch application under the system context in Windows 7 and Windows Vista, touch functionality is lost and a crash may occur after several minutes. This issue occurs because inking is not supported in the system context in Windows 7 and Windows Vista.

This hotfix disables touch support while under the system context. Touch-to-mouse promotion still works.
 

Issue 5

When a WPF application uses a TreeViewItem element outside the context of a TreeView, the application may encounter an InvalidCastException error whose stack trace starts with "System.Windows.Controls.VirtualizingStackPanel.FindScrollOffset(Visual v)."

Note This exception occurs when the TreeViewItem is in a virtualized list control, such as ListBox, DataGrid, or ListView that tries to find the scroll offset of the TreeViewItem or one of its descendants. For example, if you declare a TreeViewItem as the root of a DataTemplate, the DataTemplate is used as the CellTemplate of a DataGrid column. This triggers the exception.
 

Issue 6

This hotfix enables Transport Layer Security (TLS) 1.1/1.2 for SQL Server connectivity in System.Data.dll.
 

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×