Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any samples for mvc6 with signalr?

I have a full-working ASP.NET MVC application (.NET Core, ASP.NET MVC 6).

I would now like to add a signalr to my application. Any samples for MVC with signalr?

like image 556
selva Avatar asked May 27 '15 07:05

selva


2 Answers

The MusicStore sample on GitHub use signalR
and the BugTracker sample also
and you have a sample in the SignalR-Server repo
Or you can look at my sample on GitHub

like image 151
agua from mars Avatar answered Nov 20 '22 12:11

agua from mars


I don't believe there are any yet.

The next version of SignalR, version 3, is designed for ASP.NET Core, SignalR 2 doesn't support this. If you look on the ASP website https://www.asp.net/learn it doesn't mention that you can use SignalR with ASP.NET Core .

Since ASP.NET Core makes use of NodeJS rather then NuGet for client-side libraries, a Node module would probably be created for SignalR. Only time will tell what SingalR 3 will look like.

This is also a relevant question What is the development status of SignalR 3?

like image 38
Luke T O'Brien Avatar answered Nov 20 '22 13:11

Luke T O'Brien