Remove traces of ASP.NET Core Sockets (#1899)

This commit is contained in:
David Fowler 2018-04-07 17:51:12 -07:00 committed by GitHub
parent 767f2900f9
commit a3337eb6bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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>

View File

@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Connections;
namespace Microsoft.AspNetCore.SignalR
{
public static class SignalRSocketBuilderExtensions
public static class SignalRConnectionBuilderExtensions
{
public static IConnectionBuilder UseHub<THub>(this IConnectionBuilder connectionBuilder) where THub : Hub
{