From 4760cce6aa7c3e1040be36d461b5f0823f794636 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sat, 7 Apr 2018 18:55:59 -0700 Subject: [PATCH] Remove IConnection (#2472) --- src/Connections.Abstractions/IConnection.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/Connections.Abstractions/IConnection.cs diff --git a/src/Connections.Abstractions/IConnection.cs b/src/Connections.Abstractions/IConnection.cs deleted file mode 100644 index 4f116a8433..0000000000 --- a/src/Connections.Abstractions/IConnection.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Collections.Generic; -using System.IO.Pipelines; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Http.Features; - -namespace Microsoft.AspNetCore.Connections -{ - public interface IConnection - { - IDuplexPipe Transport { get; } - IFeatureCollection Features { get; } - - Task StartAsync(); - Task StartAsync(TransferFormat transferFormat); - Task DisposeAsync(); - } -}