Skip to content

Commit

Permalink
Remove traces of ASP.NET Core Sockets (#1899)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Apr 8, 2018
1 parent 767f290 commit a3337eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@ Travis: [![Travis](https://travis-ci.org/aspnet/SignalR.svg?branch=dev)](https

ASP.NET Core SignalR is a new library for ASP.NET Core developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time.

You can watch an introductory presentation here - [Introducing ASP.NET Core Sockets](https://vimeo.com/204078084).
You can watch an introductory presentation here - [Introducing ASP.NET Core SignalR](https://www.youtube.com/watch?v=fgTu-xYFDdM)

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo.

Expand Down
2 changes: 1 addition & 1 deletion samples/SignalRSamples/wwwroot/index.html
Expand Up @@ -5,7 +5,7 @@
<title></title>
</head>
<body>
<h1>ASP.NET Core Sockets</h1>
<h1>ASP.NET Core Connections</h1>
<ul>
<li><a href="sockets.html?transport=LongPolling">Long polling</a></li>
<li><a href="sockets.html?transport=ServerSentEvents">Server Sent Events</a></li>
Expand Down
Expand Up @@ -5,7 +5,7 @@

namespace Microsoft.AspNetCore.SignalR
{
public static class SignalRSocketBuilderExtensions
public static class SignalRConnectionBuilderExtensions
{
public static IConnectionBuilder UseHub<THub>(this IConnectionBuilder connectionBuilder) where THub : Hub
{
Expand Down

0 comments on commit a3337eb

Please sign in to comment.