Kalpana Kalpana (Editor)

SignalR

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
Microsoft

Written in
  
C#

Development status
  
Active

Operating system
  
Windows

Initial release
  
January 2013; 4 years ago (2013-01)

Stable release
  
2.2.0 / December 11, 2014; 2 years ago (2014-12-11)

SignalR is a server-side software system designed for writing scalable Internet applications, notably web servers. Programs are written on the server side in a .NET language, using event-driven, asynchronous I/O to minimize overhead and maximize scalability.

Details

ASP.NET SignalR is a library for ASP.NET developers to add real-time web functionality to their applications. Real-time web functionality is the ability to have server-side code push content to the connected clients as it happens, in real-time.

SignalR takes advantage of several transports, automatically selecting the best available transport given the client's and server's best available transport. SignalR takes advantage of WebSocket, an HTML5 API that enables bi-directional communication between the browser and server. SignalR will use WebSockets under the covers when it's available, and gracefully fall back to other techniques and technologies when it isn't, while the application code remains the same.

SignalR also provides a simple, high-level API for doing server-to-client RPC (call JavaScript functions in a client's browser from server-side .NET code) in your ASP.NET application, as well as adding useful hooks for connection management, such as connect/disconnect events, grouping connections, authorization.

References

SignalR Wikipedia