Remove traces of ASP.NET Core Sockets (#1899)
This commit is contained in:
parent
767f2900f9
commit
a3337eb6bd
|
|
@ -7,7 +7,7 @@ Travis: [](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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<title></title>
|
<title></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>ASP.NET Core Sockets</h1>
|
<h1>ASP.NET Core Connections</h1>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="sockets.html?transport=LongPolling">Long polling</a></li>
|
<li><a href="sockets.html?transport=LongPolling">Long polling</a></li>
|
||||||
<li><a href="sockets.html?transport=ServerSentEvents">Server Sent Events</a></li>
|
<li><a href="sockets.html?transport=ServerSentEvents">Server Sent Events</a></li>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Connections;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.SignalR
|
namespace Microsoft.AspNetCore.SignalR
|
||||||
{
|
{
|
||||||
public static class SignalRSocketBuilderExtensions
|
public static class SignalRConnectionBuilderExtensions
|
||||||
{
|
{
|
||||||
public static IConnectionBuilder UseHub<THub>(this IConnectionBuilder connectionBuilder) where THub : Hub
|
public static IConnectionBuilder UseHub<THub>(this IConnectionBuilder connectionBuilder) where THub : Hub
|
||||||
{
|
{
|
||||||
Loading…
Reference in New Issue