This document provides an overview of ASP.NET SignalR, a library for building real-time web functionality. It discusses traditional web application approaches using request-response, defines what "real-time" means in terms of pushing data from server to client. It introduces SignalR as a library that uses push technology to provide persistent connections and real-time functionality. It also covers SignalR's transport techniques including websockets, server-sent events, forever frames, and long polling, as well as the types of connections in SignalR including persistent connections and hubs.
Related topics: