Blog

Blog posts on .NET, Azure, and more.

Building Blazor apps with SignalR Core

October 03, 2018 by Anuraj

ASPNET Core SignalR Blazor

This post is about building Blazor apps with SignalR Core. As part of Blazor 0.5.0, it started supporting SignalR. In Blazor 0.6.0, Azure SignalR service also supported. In earlier versions of Blazor, SignalR was supported using Javascript interop, now with Blazor.Extensions project, you can use SignalR in Blazor code directly, you don’t need to write any Javascript interop code to support it.

Using MessagePack with ASP.NET Core WebAPI

September 12, 2018 by Anuraj

ASPNET Core MessagePack

This post is about how to use MessagePack in ASP.NET Core and C#. MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it’s faster and smaller. Small integers are encoded into a single byte, and typical short strings require only one extra byte in addition to the strings themselves.

Using message pack with ASP.NET Core SignalR

September 04, 2018 by Anuraj

ASPNET Core SignalR MessagePack

This post is about using MessagePack protocol in SignalR. MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it’s faster and smaller. Small integers are encoded into a single byte, and typical short strings require only one extra byte in addition to the strings themselves.

Getting started with Cosmos DB SQL Provider for Entity Framework Core

August 31, 2018 by Anuraj

ASPNET Core Cosmos DB EF Core

This post is about working with Cosmos DB SQL Provider for Entity Framework Core. Azure Cosmos DB is Microsoft’s globally distributed, multi-model database. With the click of a button, Azure Cosmos DB enables you to elastically and independently scale throughput and storage across any number of Azure’s geographic regions.

Enable HTTP2 on Kestrel

August 25, 2018 by Anuraj

Kestrel HTTP2 ASPNET Core

This post is about enabling HTTP2 on Kestrel. HTTP/2 is a major revision of the HTTP protocol. Some of the notable features of HTTP/2 are support for header compression and fully multiplexed streams over the same connection. While HTTP/2 preserves HTTP’s semantics (HTTP headers, methods, etc.) it is a breaking change from HTTP/1.x on how this data is framed and sent over the wire.

Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub