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(); - } -}