New Features in .NET Framework 4.5

The release of Visual Studio 2012 brought with it .NET Framework 4.5, and many interesting new features. In this post there are lots of new features introduced in 4.5 framework.

  • Core New Features and Improvements : Ability to reduce system restarts by detecting and closing .NET Framework 4 applications during deployment. Support for arrays that are larger than 2 gigabytes (GB) on 64-bit platforms. This feature can be enabled in the application configuration file. Better performance through background garbage collection for servers. When you use server garbage collection in the .NET Framework 4.5, background garbage collection is automatically enabled. Background just-in-time (JIT) compilation, which is optionally available on multi-core processors to improve application performance. Ability to limit how long the regular expression engine will attempt to resolve a regular expression before it times out. Ability to define the default culture for an application domain. Console support for Unicode (UTF-16) encoding. Support for versioning of cultural string ordering and comparison data. Better performance when retrieving resources. Zip compression improvements to reduce the size of a compressed file. Ability to customize a reflection context to override default reflection behavior through the CustomReflectionContext class. Support for the 2008 version of the Internationalized Domain Names in Applications (IDNA) standard when the System.Globalization.IdnMapping class is used on Windows 8. Delegation of string comparison to the operating system, which implements Unicode 6.0, when the .NET Framework is used on Windows 8. When running on other platforms, the .NET Framework includes its own string comparison data, which implements Unicode 5.x. Ability to compute the hash codes for strings on a per application domain basis. Type reflection support split between Type and TypeInfo classes.
  • Portable Class Libraries : The Portable Class Library project in Visual Studio 2012 enables you to write and build managed assemblies that work on multiple .NET Framework platforms. Using a Portable Class Library project, you choose the platforms (such as Windows Phone and .NET for Windows Store apps) to target. The available types and members in your project are automatically restricted to the common types and members across these platforms.
  • Networking : The .NET Framework 4.5 provides a new programming interface for HTTP applications. Support is also included for a new programming interface for accepting and interacting with a WebSocket connection by using the existing HttpListener and related classes. RFC-compliant URI support. Support for Internationalized Domain Name (IDN) parsing. Support for Email Address Internationalization (EAI). Improved IPv6 support. Dual-mode socket support.
  • .NET for Windows Store Apps : Windows Store apps are designed for specific form factors and leverage the power of the Windows operating system. A subset of the .NET Framework 4.5 is available for building Windows Store apps for Windows by using C# or Visual Basic. This subset is called .NET for Windows Store apps and is discussed in an overview in the Windows Dev Center.
  • Parallel Computing : The .NET Framework 4.5 provides several new features and improvements for parallel computing. These include improved performance, increased control, improved support for asynchronous programming, a new dataflow library, and improved support for parallel debugging and performance analysis.
  • Tools : Resource File Generator (Resgen.exe) enables you to create a .resw file for use in Windows Store apps from a .resources file embedded in a .NET Framework assembly. Managed Profile Guided Optimization (Mpgo.exe) enables you to improve application startup time, memory utilization (working set size), and throughput by optimizing native image assemblies. The command-line tool generates profile data for native image application assemblies.
  • Web : Support for new HTML5 form types. Support for model binders in Web Forms. These let you bind data controls directly to data-access methods, and automatically convert user input to and from .NET Framework data types. Support for unobtrusive JavaScript in client-side validation scripts. Improved handling of client script through bundling and minification for improved page performance. Integrated encoding routines from the AntiXSS library (previously an external library) to protect from cross-site scripting attacks. Support for WebSockets protocol. Support for reading and writing HTTP requests and responses asynchronously. Support for asynchronous modules and handlers. Support for content distribution network (CDN) fallback in the ScriptManager control.
  • Windows Communication Foundation (WCF) : Simplification of generated configuration files. Support for contract-first development. Ability to configure ASP.NET compatibility mode more easily. Changes in default transport property values to reduce the likelihood that you will have to set them. Updates to the XmlDictionaryReaderQuotas class to reduce the likelihood that you will have to manually configure quotas for XML dictionary readers. Validation of WCF configuration files by Visual Studio as part of the build process, so you can detect configuration errors before you run your application. New asynchronous streaming support. New HTTPS protocol mapping to make it easier to expose an endpoint over HTTPS with Internet Information Services (IIS). Ability to generate metadata in a single WSDL document by appending ?singleWSDL to the service URL. Websockets support to enable true bidirectional communication over ports 80 and 443 with performance characteristics similar to the TCP transport. Support for configuring services in code. XML Editor tooltips. ChannelFactory caching support. Binary encoder compression support. Support for a UDP transport that enables developers to write services that use “fire and forget” messaging. A client sends a message to a service and expects no response from the service. Ability to support multiple authentication modes on a single WCF endpoint when using the HTTP transport and transport security. Support for WCF services that use internationalized domain names (IDNs).
  • Windows Presentation Foundation (WPF) : The new Ribbon control, which enables you to implement a ribbon user interface that hosts a Quick Access Toolbar, Application Menu, and tabs. The new INotifyDataErrorInfo interface, which supports synchronous and asynchronous data validation. New features for the VirtualizingPanel and Dispatcher classes. Improved performance when displaying large sets of grouped data, and by accessing collections on non-UI threads. Data binding to static properties, data binding to custom types that implement the ICustomTypeProvider interface, and retrieval of data binding information from a binding expression. Repositioning of data as the values change (live shaping). Ability to check whether the data context for an item container is disconnected. Ability to set the amount of time that should elapse between property changes and data source updates. Improved support for implementing weak event patterns. Also, events can now accept markup extensions.
  • Windows Workflow Foundation (WF) : State machine workflows, which were first introduced as part of the .NET Framework 4.0.1 (.NET Framework 4 Platform Update 1). This update included several new classes and activities that enabled developers to create state machine workflows. These classes and activities were updated for the .NET Framework 4.5 to include:
    • The ability to set breakpoints on states.
    • The ability to copy and paste transitions in the workflow designer.
    • Designer support for shared trigger transition creation.
    • Activities for creating state machine workflows, including: StateMachine, State, and Transition.

    Enhanced Workflow Designer features such as the following:

    • Enhanced workflow search capabilities in Visual Studio, including Quick Find and Find in Files.
    • Ability to automatically create a Sequence activity when a second child activity is added to a container activity, and to include both activities in the Sequence activity.
    • Panning support, which enables the visible portion of a workflow to be changed without using the scroll bars.
    • A new Document Outline view that shows the components of a workflow in a tree-style outline view and lets you select a component in the Document Outline view.
    • Ability to add annotations to activities.
    • Ability to define and consume activity delegates by using the workflow designer.
    • Auto-connect and auto-insert for activities and transitions in state machine and flowchart workflows.

    Storage of the view state information for a workflow in a single element in the XAML file, so you can easily locate and edit the view state information.
    A NoPersistScope container activity to prevent child activities from persisting.
    Support for C# expressions:

    • Workflow projects that use Visual Basic will use Visual Basic expressions, and C# workflow projects will use C# expressions.
    • C# workflow projects that were created in Visual Studio 2010 and that have Visual Basic expressions are compatible with C# workflow projects that use C# expressions.

    Versioning enhancements:

    • The new WorkflowIdentity class, which provides a mapping between a persisted workflow instance and its workflow definition.
    • Side-by-side execution of multiple workflow versions in the same host, including WorkflowServiceHost.
    • In Dynamic Update, the ability to modify the definition of a persisted workflow instance.

    Contract-first workflow service development, which provides support for automatically generating activities to match an existing service contract.

Tagged . Bookmark the permalink.

Leave a Reply