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

Commit d5e1b19

Browse files
author
Praburaj
committed
Rename Microsoft.AspNet.Http.Interfaces => Microsoft.AspNet.Http
1 parent 09ccc84 commit d5e1b19

Some content is hidden

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

50 files changed

+50
-55
lines changed

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

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

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

99
namespace Microsoft.AspNet.Http.Core.Authentication

src/Microsoft.AspNet.Http.Core/Authentication/ChallengeContext.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.Http.Interfaces.Authentication;
6+
using Microsoft.AspNet.Http.Authentication;
77

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

src/Microsoft.AspNet.Http.Core/Authentication/DescribeSchemesContext.cs

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

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

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

src/Microsoft.AspNet.Http.Core/Authentication/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.Http.Interfaces.Authentication;
5+
using Microsoft.AspNet.Http.Authentication;
66

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

src/Microsoft.AspNet.Http.Core/Authentication/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.Http.Interfaces.Authentication;
7+
using Microsoft.AspNet.Http.Authentication;
88

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

src/Microsoft.AspNet.Http.Core/Authentication/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.Http.Interfaces.Authentication;
6+
using Microsoft.AspNet.Http.Authentication;
77

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

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.Http.Interfaces;
8+
using Microsoft.AspNet.Http;
99

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
using Microsoft.AspNet.Http.Core.Infrastructure;
1414
using Microsoft.AspNet.Http.Core.Authentication;
1515
using Microsoft.AspNet.Http.Infrastructure;
16-
using Microsoft.AspNet.Http.Interfaces;
17-
using Microsoft.AspNet.Http.Interfaces.Authentication;
16+
using Microsoft.AspNet.Http;
1817
using Microsoft.AspNet.Http.Authentication;
1918

2019
namespace Microsoft.AspNet.Http.Core

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Microsoft.AspNet.FeatureModel;
99
using Microsoft.AspNet.Http;
1010
using Microsoft.AspNet.Http.Infrastructure;
11-
using Microsoft.AspNet.Http.Interfaces;
1211
using Microsoft.AspNet.Http.Core.Collections;
1312
using Microsoft.AspNet.Http.Core.Infrastructure;
1413

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
using Microsoft.AspNet.Http.Core.Infrastructure;
1212
using Microsoft.AspNet.Http.Core.Authentication;
1313
using Microsoft.AspNet.Http.Infrastructure;
14-
using Microsoft.AspNet.Http.Interfaces;
15-
using Microsoft.AspNet.Http.Interfaces.Authentication;
14+
using Microsoft.AspNet.Http;
15+
using Microsoft.AspNet.Http.Authentication;
1616
using Microsoft.AspNet.Http.Authentication;
1717

1818
namespace Microsoft.AspNet.Http.Core

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.Http.Interfaces;
7+
using Microsoft.AspNet.Http;
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.Http.Interfaces;
7+
using Microsoft.AspNet.Http;
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.Http.Interfaces;
7+
using Microsoft.AspNet.Http;
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.Http.Interfaces;
9+
using Microsoft.AspNet.Http;
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.Http.Interfaces;
6+
using Microsoft.AspNet.Http;
77
using Microsoft.AspNet.Http.Core.Collections;
88
using Microsoft.AspNet.Http.Core.Infrastructure;
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.Http.Interfaces;
4+
using Microsoft.AspNet.Http;
55

66
namespace Microsoft.AspNet.Http.Core
77
{

src/Microsoft.AspNet.Http.Interfaces/IHttpApplicationFeature.cs

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

44
using System.Threading;
55

6-
namespace Microsoft.AspNet.Http.Interfaces
6+
namespace Microsoft.AspNet.Http
77
{
88
public interface IHttpApplicationFeature
99
{

src/Microsoft.AspNet.Http.Interfaces/IHttpBufferingFeature.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-
namespace Microsoft.AspNet.Http.Interfaces
4+
namespace Microsoft.AspNet.Http
55
{
66
public interface IHttpBufferingFeature
77
{

src/Microsoft.AspNet.Http.Interfaces/IHttpClientCertificateFeature.cs

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

8-
namespace Microsoft.AspNet.Http.Interfaces
8+
namespace Microsoft.AspNet.Http
99
{
1010
public interface IHttpClientCertificateFeature
1111
{

src/Microsoft.AspNet.Http.Interfaces/IHttpConnectionFeature.cs

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

44
using System.Net;
55

6-
namespace Microsoft.AspNet.Http.Interfaces
6+
namespace Microsoft.AspNet.Http
77
{
88
public interface IHttpConnectionFeature
99
{

src/Microsoft.AspNet.Http.Interfaces/IHttpRequestFeature.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 System.IO;
66

7-
namespace Microsoft.AspNet.Http.Interfaces
7+
namespace Microsoft.AspNet.Http
88
{
99
public interface IHttpRequestFeature
1010
{

src/Microsoft.AspNet.Http.Interfaces/IHttpRequestLifetimeFeature.cs

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

44
using System.Threading;
55

6-
namespace Microsoft.AspNet.Http.Interfaces
6+
namespace Microsoft.AspNet.Http
77
{
88
public interface IHttpRequestLifetimeFeature
99
{

src/Microsoft.AspNet.Http.Interfaces/IHttpResponseFeature.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.IO;
77

8-
namespace Microsoft.AspNet.Http.Interfaces
8+
namespace Microsoft.AspNet.Http
99
{
1010
public interface IHttpResponseFeature
1111
{

src/Microsoft.AspNet.Http.Interfaces/IHttpSendFileFeature.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 System.Threading.Tasks;
66

7-
namespace Microsoft.AspNet.Http.Interfaces
7+
namespace Microsoft.AspNet.Http
88
{
99
public interface IHttpSendFileFeature
1010
{

src/Microsoft.AspNet.Http.Interfaces/IHttpUpgradeFeature.cs

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

7-
namespace Microsoft.AspNet.Http.Interfaces
7+
namespace Microsoft.AspNet.Http
88
{
99
public interface IHttpUpgradeFeature
1010
{

src/Microsoft.AspNet.Http.Interfaces/IHttpWebSocketFeature.cs

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

7-
namespace Microsoft.AspNet.Http.Interfaces
7+
namespace Microsoft.AspNet.Http
88
{
99
public interface IHttpWebSocketFeature
1010
{

src/Microsoft.AspNet.Http.Interfaces/IRequestIdentifierFeature.cs

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

44
using System;
55

6-
namespace Microsoft.AspNet.Http.Interfaces
6+
namespace Microsoft.AspNet.Http
77
{
88
/// <summary>
99
/// Feature to identify a request.

src/Microsoft.AspNet.Http.Interfaces/ISession.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

7-
namespace Microsoft.AspNet.Http.Interfaces
7+
namespace Microsoft.AspNet.Http
88
{
99
public interface ISession
1010
{

src/Microsoft.AspNet.Http.Interfaces/ISessionFactory.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-
namespace Microsoft.AspNet.Http.Interfaces
4+
namespace Microsoft.AspNet.Http
55
{
66
public interface ISessionFactory
77
{

src/Microsoft.AspNet.Http.Interfaces/ISessionFeature.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-
namespace Microsoft.AspNet.Http.Interfaces
4+
namespace Microsoft.AspNet.Http
55
{
66
// TODO: Is there any reason not to flatten the Factory down into the Feature?
77
public interface ISessionFeature

src/Microsoft.AspNet.Http.Interfaces/ITlsTokenBindingFeature.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-
namespace Microsoft.AspNet.Http.Interfaces
4+
namespace Microsoft.AspNet.Http
55
{
66
/// <summary>
77
/// Provides information regarding TLS token binding parameters.

src/Microsoft.AspNet.Http.Interfaces/IWebSocketAcceptContext.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-
namespace Microsoft.AspNet.Http.Interfaces
4+
namespace Microsoft.AspNet.Http
55
{
66
public interface IWebSocketAcceptContext
77
{

src/Microsoft.AspNet.Http.Interfaces/Security/IAuthenticateContext.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 System.Security.Claims;
66

7-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
7+
namespace Microsoft.AspNet.Http.Authentication
88
{
99
public interface IAuthenticateContext
1010
{

src/Microsoft.AspNet.Http.Interfaces/Security/IAuthenticationHandler.cs

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

44
using System.Threading.Tasks;
55

6-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
6+
namespace Microsoft.AspNet.Http.Authentication
77
{
88
public interface IAuthenticationHandler
99
{

src/Microsoft.AspNet.Http.Interfaces/Security/IChallengeContext.cs

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

44
using System.Collections.Generic;
55

6-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
6+
namespace Microsoft.AspNet.Http.Authentication
77
{
88
public interface IChallengeContext
99
{

src/Microsoft.AspNet.Http.Interfaces/Security/IDescribeSchemesContext.cs

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

44
using System.Collections.Generic;
55

6-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
6+
namespace Microsoft.AspNet.Http.Authentication
77
{
88
public interface IDescribeSchemesContext
99
{

src/Microsoft.AspNet.Http.Interfaces/Security/IHttpAuthenticationFeature.cs

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

44
using System.Security.Claims;
55

6-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
6+
namespace Microsoft.AspNet.Http.Authentication
77
{
88
public interface IHttpAuthenticationFeature
99
{

src/Microsoft.AspNet.Http.Interfaces/Security/ISignInContext.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 System.Security.Claims;
66

7-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
7+
namespace Microsoft.AspNet.Http.Authentication
88
{
99
public interface ISignInContext
1010
{

src/Microsoft.AspNet.Http.Interfaces/Security/ISignOutContext.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-
namespace Microsoft.AspNet.Http.Interfaces.Authentication
4+
namespace Microsoft.AspNet.Http.Authentication
55
{
66
public interface ISignOutContext
77
{

src/Microsoft.AspNet.Owin/OwinEnvironment.cs

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

2121
namespace Microsoft.AspNet.Owin
2222
{

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.Http.Interfaces;
19-
using Microsoft.AspNet.Http.Interfaces.Authentication;
18+
using Microsoft.AspNet.Http;
19+
using Microsoft.AspNet.Http.Authentication;
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.Http.Interfaces;
8+
using Microsoft.AspNet.Http;
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.Http.Interfaces;
5+
using Microsoft.AspNet.Http;
66

77
namespace Microsoft.AspNet.Owin
88
{

0 commit comments

Comments
 (0)