News

Blazor WebAssembly Gets Lazy Loading

Blazor enhancements show strongly in the list of ASP.NET Core updates included in this week's release of .NET 5 Preview 8, with lazy loading for the client-side component heading the list of improvements to the open source framework that allows for web development in C# instead of JavaScript.

In addition to lazy loading for Blazor WebAssembly, that list includes:

  • CSS isolation for Blazor components
  • Updated Blazor WebAssembly globalization support
  • New InputRadio Blazor component
  • Set UI focus in Blazor apps
  • IAsyncDisposable for Blazor components
  • Control Blazor component instantiation

"Lazy loading enables you to improve the load time of your Blazor WebAssembly app by deferring the download of specific app dependencies until they are required," said Daniel Roth, principal program manager, ASP.NET, in an Aug. 25 blog post. "Lazy loading may be helpful if your Blazor WebAssembly app has large dependencies that are only used for specific parts of the app."

Microsoft isn't alone in applying lazy loading to Blazor, as a GitHub project by Ivan Sanz Carasa does just that.

A Hot Topic
A Hot Topic (source: Ivan Sanz Carasa).

Developers can learn more about Microsoft's implementation of lazy loading in Blazor WebAssembly in the new guidance: Lazy load assemblies in ASP.NET Core Blazor WebAssembly.

Roth listed the Blazor enhancements along with other updates for ASP.NET Core in the new preview of .NET 5, which is scheduled to debut in November. Before that, .NET 5 -- which is now feature complete -- will see two release candidates shipping.

In explaining the Blazor-specific updates, Roth said:

  • CSS isolation for Blazor components lets developers scope CSS styles to a specific component in order to better reason about different app styles and avoid side effects that can arise from the use of global styles.
  • The updated Blazor WebAssembly globalization support is still a work in progress, with some of that work aimed at reducing the size of downloaded International Components for Unicode (ICU) payloads.
  • The new Blazor built-in InputRadio and InputRadioGroup components simplify data binding to radio button groups with integrated validation alongside the other Blazor form input components.
  • Preview 8 introduces a FocusAsync convenience method on ElementReference for setting the UI focus on that element.
  • The IAsyncDisposable interface for the asynchronous release of allocated resources is now supported in Blazor components.
  • Developers provide their own IComponentActivator service implementation in order to control how Blazor components are instantiated.
  • Developers can now programmatically set the title of a page and dynamically add link and meta tags to the HTML head in a Blazor app with new Title, Link and Meta components.
  • Protected browser storage ensures that in Blazor Server, app state data parked in local or session storage isn't changed, via two new services called ProtectedLocalStorage and ProtectedSessionStorage.

"Blazor is winning all the things!" said one developer in the post's comments section, though several others pointed out problems with failed builds and other issues.

Going forward, the Blazor Roadmap for .NET 5 indicates the first .NET 5 release candidate (RC) will address:

Other, non-Blazor updates listed by Roth in this week's post include:

  • Azure Active Directory authentication with Microsoft.Identity.Web
  • Model binding and validation with C# 9 record types
  • Improvements to DynamicRouteValueTransformer
  • Auto refresh with dotnet watch
  • Console Logger Formatter
  • JSON Console Logger

More information about all of the above and much more can be found in the post or in the release notes for .NET 5 that detail new features in ASP.NET Core and bug fixes.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube