Showing results for SignalR - .NET Blog

Jan 31, 2024
1
10

Building AI-powered Microsoft Copilot with SignalR and other open-source tools

Justin D. Harris Kevin Guo Ken Chen
Justin,
Kevin,
Ken

Microsoft Copilot is powered by several open-source tools, such as SignalR, Adaptive Cards, Markdown, and object-basin to solve the unique challenges in building AI-enabled applications at scale. In this article, we share the design considerations and how we integrated various tools with a focus on how we stream messages and responses to the front-...

.NETASP.NETASP.NET Core
Aug 8, 2019
6
0

Azure SignalR Service now supports Event Grid!

Ken Chen
Ken Chen

We just released a new feature which enables Azure SignalR Service to publish connection events to Azure Event Grid. Check out this blog post to learn how it works and how to use it.

ASP.NETAzureSignalR
Oct 22, 2018
0
0

ASP.NET SignalR 2.4.0 Preview 2

Andrew Stanton-Nurse
Andrew Stanton-Nurse

We've just released the second preview of the upcoming 2.4.0 release of ASP.NET SignalR. As we mentioned in our previous blog post on the future of ASP.NET SignalR we are releasing a minor update to ASP.NET SignalR (the version of SignalR for System.Web and/or OWIN-based applications) that includes, support for the Azure SignalR Service, as well as...

ASP.NETASP.NET CoreSignalR
Feb 27, 2018
0
0

ASP.NET Core 2.1.0-preview1: Getting started with SignalR

Andrew Stanton-Nurse
Andrew Stanton-Nurse

Since 2013, ASP.NET developers have been using SignalR to build real-time web applications. Now, with ASP.NET Core 2.1 Preview 1, we're bringing SignalR over to ASP.NET Core so you can build real-time web applications with all the benefits of ASP.NET Core. We released an alpha version of this new SignalR back in October that worked with ASP.NET Cor...

ASP.NETASP.NET CoreSignalR
Sep 14, 2017
0

Announcing SignalR (alpha) for ASP.NET Core 2.0

Glenn Condron [MSFT]
Glenn Condron [MSFT]

NOTE: This is a post about the Alpha version of SignalR which has since been replaced with a new preview: https://blogs.msdn.microsoft.com/webdev/2018/02/27/asp-net-core-2-1-0-preview1-getting-started-with-signalr/ Today we are glad to announce an alpha release of SignalR for ASP.NET Core 2.0. This is the first official preview release of a new Si...

ASP.NETASP.NET Core
Dec 10, 2013
0
0

ASP.NET December 2013 Security Updates

levibroderick
levibroderick

Today is Patch Tuesday, and the ASP.NET team would like to announce that we have two items included in this month’s release. The first is a bulletin affecting certain versions of SignalR; the second is an advisory affecting ASP.NET Web Forms (.aspx) applications. Each item is briefly outlined below. For more information, consult Security Tech...

ASP.NET
Nov 14, 2013
0
0

Azure Web Site now supports WebSockets

Gustavo Armenta Valdez
Gustavo Armenta Valdez

If you missed the announcement the other day, WebSockets are now supported in Windows Azure Web Sites. Let's try it with a sample SignalR application. Create an Azure Web Site Create a Visual Studio Project associated to an Azure Web Site Add SignalR Sto...

ASP.NET
Nov 9, 2013
0
0

Office Web Apps are using ASP.NET SignalR to power real-time co-authoring

Xinyang Qiu
Xinyang Qiu

Office Web Apps are now using SignalR as the backend to synchronize changes when two or more people are editing files on SkyDrive or on SharePoint Online.  SignalR enables real time communication among different browsers and native mobile apps to communicate with each other through the backend server.  It is flexible, scalable and offers ...

ASP.NET
Oct 11, 2013
0
0

SignalR and user identity (authentication and authorization)

Gustavo Armenta Valdez
Gustavo Armenta Valdez

There are too many authentication types (Basic, Windows, Cookie, OAuth) to explain how to use all of them. In this sample, I focus on using Cookie Authentication to secure a website, a Persistent Connection, and a Hub. Authentication is configured on OWIN, you have to add some nuget packages and add code in Startup.cs. I started with a web project ...

ASP.NET