#88 Rename IHttpOpaqueUpgradeFeature to IHttpUpgradeFeature.
This commit is contained in:
parent
10d8b1015e
commit
9028c6a1a5
|
|
@ -1,13 +0,0 @@
|
|||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Framework.Runtime;
|
||||
|
||||
namespace Microsoft.AspNet.HttpFeature
|
||||
{
|
||||
[AssemblyNeutral]
|
||||
public interface IHttpOpaqueUpgradeFeature
|
||||
{
|
||||
bool IsUpgradableRequest { get; }
|
||||
Task<Stream> UpgradeAsync();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Framework.Runtime;
|
||||
|
||||
namespace Microsoft.AspNet.HttpFeature
|
||||
{
|
||||
[AssemblyNeutral]
|
||||
public interface IHttpUpgradeFeature
|
||||
{
|
||||
bool IsUpgradableRequest { get; }
|
||||
Task<Stream> UpgradeAsync();
|
||||
}
|
||||
}
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
<Compile Include="IHttpApplicationFeature.cs" />
|
||||
<Compile Include="IHttpBufferingFeature.cs" />
|
||||
<Compile Include="IHttpConnectionFeature.cs" />
|
||||
<Compile Include="IHttpOpaqueUpgradeFeature.cs" />
|
||||
<Compile Include="IHttpUpgradeFeature.cs" />
|
||||
<Compile Include="IHttpRequestFeature.cs" />
|
||||
<Compile Include="IHttpRequestLifetimeFeature.cs" />
|
||||
<Compile Include="IHttpResponseFeature.cs" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue