Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit db484a7

Browse files
committed
Rename Microsoft.AspNet.HttpFeature to Microsoft.AspNet.Http.Interfaces
1 parent 26860ad commit db484a7

File tree

59 files changed

+60
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+60
-60
lines changed

HttpAbstractions.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Core"
1111
EndProject
1212
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http", "src\Microsoft.AspNet.Http\Microsoft.AspNet.Http.kproj", "{22071333-15BA-4D16-A1D5-4D5B1A83FBDD}"
1313
EndProject
14-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.HttpFeature", "src\Microsoft.AspNet.HttpFeature\Microsoft.AspNet.HttpFeature.kproj", "{D9128247-8F97-48B8-A863-F1F21A029FCE}"
14+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Http.Interfaces", "src\Microsoft.AspNet.Http.Interfaces\Microsoft.AspNet.Http.Interfaces.kproj", "{D9128247-8F97-48B8-A863-F1F21A029FCE}"
1515
EndProject
1616
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.FeatureModel", "src\Microsoft.AspNet.FeatureModel\Microsoft.AspNet.FeatureModel.kproj", "{32A4C918-30EE-41DB-8E26-8A3BB88ED231}"
1717
EndProject

src/Microsoft.AspNet.Http.Core/Collections/SessionCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections;
66
using System.Collections.Generic;
77
using Microsoft.AspNet.Http;
8-
using Microsoft.AspNet.HttpFeature;
8+
using Microsoft.AspNet.Http.Interfaces;
99

1010
namespace Microsoft.AspNet.Http.Core.Collections
1111
{

src/Microsoft.AspNet.Http.Core/DefaultHttpContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
using Microsoft.AspNet.Http;
1313
using Microsoft.AspNet.Http.Infrastructure;
1414
using Microsoft.AspNet.Http.Security;
15-
using Microsoft.AspNet.HttpFeature;
16-
using Microsoft.AspNet.HttpFeature.Security;
15+
using Microsoft.AspNet.Http.Interfaces;
16+
using Microsoft.AspNet.Http.Interfaces.Security;
1717
using Microsoft.AspNet.Http.Core.Collections;
1818
using Microsoft.AspNet.Http.Core.Infrastructure;
1919
using Microsoft.AspNet.Http.Core.Security;

src/Microsoft.AspNet.Http.Core/DefaultHttpRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.AspNet.FeatureModel;
99
using Microsoft.AspNet.Http;
1010
using Microsoft.AspNet.Http.Infrastructure;
11-
using Microsoft.AspNet.HttpFeature;
11+
using Microsoft.AspNet.Http.Interfaces;
1212
using Microsoft.AspNet.Http.Core.Collections;
1313
using Microsoft.AspNet.Http.Core.Infrastructure;
1414

src/Microsoft.AspNet.Http.Core/DefaultHttpResponse.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
using Microsoft.AspNet.Http.Infrastructure;
1313
using Microsoft.AspNet.Http.Security;
1414
using Microsoft.AspNet.FeatureModel;
15-
using Microsoft.AspNet.HttpFeature;
16-
using Microsoft.AspNet.HttpFeature.Security;
15+
using Microsoft.AspNet.Http.Interfaces;
16+
using Microsoft.AspNet.Http.Interfaces.Security;
1717
using Microsoft.AspNet.Http.Core.Collections;
1818
using Microsoft.AspNet.Http.Core.Infrastructure;
1919
using Microsoft.AspNet.Http.Core.Security;

src/Microsoft.AspNet.Http.Core/HttpRequestFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.IO;
7-
using Microsoft.AspNet.HttpFeature;
7+
using Microsoft.AspNet.Http.Interfaces;
88

99
namespace Microsoft.AspNet.Http.Core
1010
{

src/Microsoft.AspNet.Http.Core/HttpResponseFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.IO;
7-
using Microsoft.AspNet.HttpFeature;
7+
using Microsoft.AspNet.Http.Interfaces;
88

99
namespace Microsoft.AspNet.Http.Core
1010
{

src/Microsoft.AspNet.Http.Core/QueryFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using Microsoft.AspNet.FeatureModel;
66
using Microsoft.AspNet.Http;
7-
using Microsoft.AspNet.HttpFeature;
7+
using Microsoft.AspNet.Http.Interfaces;
88
using Microsoft.AspNet.Http.Core.Collections;
99
using Microsoft.AspNet.Http.Core.Infrastructure;
1010
using Microsoft.AspNet.WebUtilities;

src/Microsoft.AspNet.Http.Core/RequestCookiesFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.AspNet.FeatureModel;
77
using Microsoft.AspNet.Http;
88
using Microsoft.AspNet.Http.Infrastructure;
9-
using Microsoft.AspNet.HttpFeature;
9+
using Microsoft.AspNet.Http.Interfaces;
1010
using Microsoft.AspNet.Http.Core.Collections;
1111
using Microsoft.AspNet.Http.Core.Infrastructure;
1212

src/Microsoft.AspNet.Http.Core/ResponseCookiesFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.AspNet.Http;
55
using Microsoft.AspNet.FeatureModel;
6-
using Microsoft.AspNet.HttpFeature;
6+
using Microsoft.AspNet.Http.Interfaces;
77
using Microsoft.AspNet.Http.Core.Collections;
88
using Microsoft.AspNet.Http.Core.Infrastructure;
99

src/Microsoft.AspNet.Http.Core/Security/AuthTypeContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using Microsoft.AspNet.Http.Security;
7-
using Microsoft.AspNet.HttpFeature.Security;
7+
using Microsoft.AspNet.Http.Interfaces.Security;
88

99
namespace Microsoft.AspNet.Http.Core.Security
1010
{

src/Microsoft.AspNet.Http.Core/Security/AuthenticateContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Text;
99
using System.Threading.Tasks;
1010
using Microsoft.AspNet.Http.Security;
11-
using Microsoft.AspNet.HttpFeature.Security;
11+
using Microsoft.AspNet.Http.Interfaces.Security;
1212

1313
namespace Microsoft.AspNet.Http.Core.Security
1414
{

src/Microsoft.AspNet.Http.Core/Security/ChallengeContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Linq;
77
using System.Text;
88
using System.Threading.Tasks;
9-
using Microsoft.AspNet.HttpFeature.Security;
9+
using Microsoft.AspNet.Http.Interfaces.Security;
1010

1111
namespace Microsoft.AspNet.Http.Core.Security
1212
{

src/Microsoft.AspNet.Http.Core/Security/HttpAuthenticationFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Security.Claims;
5-
using Microsoft.AspNet.HttpFeature.Security;
5+
using Microsoft.AspNet.Http.Interfaces.Security;
66

77
namespace Microsoft.AspNet.Http.Core.Security
88
{

src/Microsoft.AspNet.Http.Core/Security/SignInContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Security.Claims;
7-
using Microsoft.AspNet.HttpFeature.Security;
7+
using Microsoft.AspNet.Http.Interfaces.Security;
88

99
namespace Microsoft.AspNet.Http.Core.Security
1010
{

src/Microsoft.AspNet.Http.Core/Security/SignOutContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.AspNet.HttpFeature.Security;
6+
using Microsoft.AspNet.Http.Interfaces.Security;
77

88
namespace Microsoft.AspNet.Http.Core.Security
99
{

src/Microsoft.AspNet.Http.Core/WebSocketAcceptContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.AspNet.HttpFeature;
4+
using Microsoft.AspNet.Http.Interfaces;
55

66
namespace Microsoft.AspNet.Http.Core
77
{

src/Microsoft.AspNet.Http.Core/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dependencies": {
66
"Microsoft.AspNet.FeatureModel": "1.0.0-*",
77
"Microsoft.AspNet.Http": "1.0.0-*",
8-
"Microsoft.AspNet.HttpFeature": "1.0.0-*",
8+
"Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
99
"Microsoft.AspNet.WebUtilities": "1.0.0-*",
1010
"Microsoft.Net.Http.Headers": "1.0.0-*"
1111

src/Microsoft.AspNet.HttpFeature/IHttpApplicationFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature
7+
namespace Microsoft.AspNet.Http.Interfaces
88
{
99
[AssemblyNeutral]
1010
public interface IHttpApplicationFeature

src/Microsoft.AspNet.HttpFeature/IHttpBufferingFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpBufferingFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.Framework.Runtime;
55

6-
namespace Microsoft.AspNet.HttpFeature
6+
namespace Microsoft.AspNet.Http.Interfaces
77
{
88
[AssemblyNeutral]
99
public interface IHttpBufferingFeature

src/Microsoft.AspNet.HttpFeature/IHttpClientCertificateFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpClientCertificateFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using Microsoft.Framework.Runtime;
88

9-
namespace Microsoft.AspNet.HttpFeature
9+
namespace Microsoft.AspNet.Http.Interfaces
1010
{
1111
[AssemblyNeutral]
1212
public interface IHttpClientCertificateFeature

src/Microsoft.AspNet.HttpFeature/IHttpConnectionFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpConnectionFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Net;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature
7+
namespace Microsoft.AspNet.Http.Interfaces
88
{
99
[AssemblyNeutral]
1010
public interface IHttpConnectionFeature

src/Microsoft.AspNet.HttpFeature/IHttpRequestFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpRequestFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.IO;
77
using Microsoft.Framework.Runtime;
88

9-
namespace Microsoft.AspNet.HttpFeature
9+
namespace Microsoft.AspNet.Http.Interfaces
1010
{
1111
[AssemblyNeutral]
1212
public interface IHttpRequestFeature

src/Microsoft.AspNet.HttpFeature/IHttpRequestLifetimeFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpRequestLifetimeFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature
7+
namespace Microsoft.AspNet.Http.Interfaces
88
{
99
[AssemblyNeutral]
1010
public interface IHttpRequestLifetimeFeature

src/Microsoft.AspNet.HttpFeature/IHttpResponseFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpResponseFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.IO;
77
using Microsoft.Framework.Runtime;
88

9-
namespace Microsoft.AspNet.HttpFeature
9+
namespace Microsoft.AspNet.Http.Interfaces
1010
{
1111
[AssemblyNeutral]
1212
public interface IHttpResponseFeature

src/Microsoft.AspNet.HttpFeature/IHttpSendFileFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpSendFileFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature
8+
namespace Microsoft.AspNet.Http.Interfaces
99
{
1010
[AssemblyNeutral]
1111
public interface IHttpSendFileFeature

src/Microsoft.AspNet.HttpFeature/IHttpUpgradeFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpUpgradeFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature
8+
namespace Microsoft.AspNet.Http.Interfaces
99
{
1010
[AssemblyNeutral]
1111
public interface IHttpUpgradeFeature

src/Microsoft.AspNet.HttpFeature/IHttpWebSocketFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IHttpWebSocketFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature
8+
namespace Microsoft.AspNet.Http.Interfaces
99
{
1010
[AssemblyNeutral]
1111
public interface IHttpWebSocketFeature

src/Microsoft.AspNet.HttpFeature/ISession.cs renamed to src/Microsoft.AspNet.Http.Interfaces/ISession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature
8+
namespace Microsoft.AspNet.Http.Interfaces
99
{
1010
[AssemblyNeutral]
1111
public interface ISession

src/Microsoft.AspNet.HttpFeature/ISessionFactory.cs renamed to src/Microsoft.AspNet.Http.Interfaces/ISessionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature
7+
namespace Microsoft.AspNet.Http.Interfaces
88
{
99
[AssemblyNeutral]
1010
public interface ISessionFactory

src/Microsoft.AspNet.HttpFeature/ISessionFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/ISessionFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.Framework.Runtime;
55

6-
namespace Microsoft.AspNet.HttpFeature
6+
namespace Microsoft.AspNet.Http.Interfaces
77
{
88
// TODO: Is there any reason not to flatten the Factory down into the Feature?
99
[AssemblyNeutral]

src/Microsoft.AspNet.HttpFeature/IWebSocketAcceptContext.cs renamed to src/Microsoft.AspNet.Http.Interfaces/IWebSocketAcceptContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.Framework.Runtime;
55

6-
namespace Microsoft.AspNet.HttpFeature
6+
namespace Microsoft.AspNet.Http.Interfaces
77
{
88
[AssemblyNeutral]
99
public interface IWebSocketAcceptContext

src/Microsoft.AspNet.HttpFeature/Security/IAuthTypeContext.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/IAuthTypeContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature.Security
7+
namespace Microsoft.AspNet.Http.Interfaces.Security
88
{
99
[AssemblyNeutral]
1010
public interface IAuthTypeContext

src/Microsoft.AspNet.HttpFeature/Security/IAuthenticateContext.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/IAuthenticateContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Security.Claims;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature.Security
8+
namespace Microsoft.AspNet.Http.Interfaces.Security
99
{
1010
[AssemblyNeutral]
1111
public interface IAuthenticateContext

src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationHandler.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/IAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature.Security
8+
namespace Microsoft.AspNet.Http.Interfaces.Security
99
{
1010
[AssemblyNeutral]
1111
public interface IAuthenticationHandler

src/Microsoft.AspNet.HttpFeature/Security/IChallengeContext.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/IChallengeContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature.Security
7+
namespace Microsoft.AspNet.Http.Interfaces.Security
88
{
99
[AssemblyNeutral]
1010
public interface IChallengeContext

src/Microsoft.AspNet.HttpFeature/Security/IHttpAuthenticationFeature.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/IHttpAuthenticationFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Security.Claims;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature.Security
7+
namespace Microsoft.AspNet.Http.Interfaces.Security
88
{
99
[AssemblyNeutral]
1010
public interface IHttpAuthenticationFeature

src/Microsoft.AspNet.HttpFeature/Security/ISignInContext.cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/ISignInContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Security.Claims;
66
using Microsoft.Framework.Runtime;
77

8-
namespace Microsoft.AspNet.HttpFeature.Security
8+
namespace Microsoft.AspNet.Http.Interfaces.Security
99
{
1010
[AssemblyNeutral]
1111
public interface ISignInContext

src/Microsoft.AspNet.HttpFeature/Security/ISignOutContext .cs renamed to src/Microsoft.AspNet.Http.Interfaces/Security/ISignOutContext .cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using Microsoft.Framework.Runtime;
66

7-
namespace Microsoft.AspNet.HttpFeature.Security
7+
namespace Microsoft.AspNet.Http.Interfaces.Security
88
{
99
[AssemblyNeutral]
1010
public interface ISignOutContext

src/Microsoft.AspNet.Owin/OwinEnvironment.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
using System.Threading;
1515
using System.Threading.Tasks;
1616
using Microsoft.AspNet.Http;
17-
using Microsoft.AspNet.HttpFeature;
18-
using Microsoft.AspNet.HttpFeature.Security;
17+
using Microsoft.AspNet.Http.Interfaces;
18+
using Microsoft.AspNet.Http.Interfaces.Security;
1919
using Microsoft.AspNet.Http.Core.Security;
2020

2121
namespace Microsoft.AspNet.Owin

src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
using System.Threading;
1616
using System.Threading.Tasks;
1717
using Microsoft.AspNet.FeatureModel;
18-
using Microsoft.AspNet.HttpFeature;
19-
using Microsoft.AspNet.HttpFeature.Security;
18+
using Microsoft.AspNet.Http.Interfaces;
19+
using Microsoft.AspNet.Http.Interfaces.Security;
2020

2121
namespace Microsoft.AspNet.Owin
2222
{

src/Microsoft.AspNet.Owin/WebSockets/OwinWebSocketAcceptAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Net.WebSockets;
77
using System.Threading.Tasks;
8-
using Microsoft.AspNet.HttpFeature;
8+
using Microsoft.AspNet.Http.Interfaces;
99

1010
namespace Microsoft.AspNet.Owin
1111
{

src/Microsoft.AspNet.Owin/WebSockets/OwinWebSocketAcceptContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections.Generic;
5-
using Microsoft.AspNet.HttpFeature;
5+
using Microsoft.AspNet.Http.Interfaces;
66

77
namespace Microsoft.AspNet.Owin
88
{

0 commit comments

Comments
 (0)