Setting up connection transport strategies

When a connection is made, a transport strategy must be put in place in order to properly move bits back and forth between the client and the server. SignalR can choose among different transport options as follows:

  • WebSocket: This is an HTML5-related protocol that provides full duplex communication channels over a single TCP connection and is available in modern web browsers and web servers
  • Server-Sent Events: This is a strategy based on the EventSource HTML5 support that allows a server to stream messages to the connected clients
  • Forever Frame: This is a strategy based on the use of a hidden iframe element, where the chunked encoding HTTP feature is used to send an indefinitely long stream of bytes
  • Long ...

Get SignalR Real-time Application Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.