Remove IConnection (#2472)

This commit is contained in:
David Fowler 2018-04-07 18:55:59 -07:00 committed by GitHub
parent 2ee0d6e337
commit 4760cce6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 17 deletions

View File

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