Microsoft has released Preview 7 of its .NET 10 runtime and frameworks, with new features including wrapping WebSocket connections as streams, improved passkey authentication in ASP.NET, and new features and fixes for MAUI (Multi-platform App UI).

New in this release is WebSocketStream , a new library API which provides a stream-based abstraction over a WebSocket, simplifying programming. An example in the documentation shows how to read and deserialize a JSON Message with just two lines of code.

In ASP.NET Core, support for passkey authentication has been simplified and in new applications using Blazor, now Microsoft's preferred framework for modern web applications, passkeys are supported automatically when individual authentication is selected. Creating a new Blazor application with p

See Full Page