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

Commit eb0fe6a

Browse files
committed
#281 Reorganise files, namespaces for internal and features.
1 parent 550b225 commit eb0fe6a

File tree

83 files changed

+118
-102
lines changed

Some content is hidden

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

83 files changed

+118
-102
lines changed

src/Microsoft.AspNet.Http/Infrastructure/FeatureReference.cs renamed to src/Microsoft.AspNet.FeatureModel/FeatureReference.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
// Copyright (c) .NET Foundation. 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.FeatureModel;
5-
6-
namespace Microsoft.AspNet.Http.Infrastructure
4+
namespace Microsoft.AspNet.FeatureModel
75
{
8-
internal struct FeatureReference<T>
6+
public struct FeatureReference<T>
97
{
108
private T _feature;
119
private int _revision;
File renamed without changes.

src/Microsoft.AspNet.Http.Abstractions/IFormCollection.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Copyright (c) .NET Foundation. 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 System.Collections.Generic;
5-
64
namespace Microsoft.AspNet.Http
75
{
86
/// <summary>

src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Microsoft.AspNet.Http.Extensions;
8+
using Microsoft.AspNet.Http.Features;
89
using Microsoft.Framework.Internal;
910

1011
namespace Microsoft.AspNet.Http

src/Microsoft.AspNet.Http.Features/Authentication/AuthenticateContext.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.Internal;
77

8-
namespace Microsoft.AspNet.Http.Authentication
8+
namespace Microsoft.AspNet.Http.Features.Authentication
99
{
1010
public class AuthenticateContext
1111
{

src/Microsoft.AspNet.Http.Features/Authentication/ChallengeContext.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.Authentication
7+
namespace Microsoft.AspNet.Http.Features.Authentication
88
{
99
public class ChallengeContext
1010
{

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

6-
namespace Microsoft.AspNet.Http.Authentication
6+
namespace Microsoft.AspNet.Http.Features.Authentication
77
{
88
public class DescribeSchemesContext
99
{

src/Microsoft.AspNet.Http.Features/Authentication/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.Authentication
6+
namespace Microsoft.AspNet.Http.Features.Authentication
77
{
88
public interface IAuthenticationHandler
99
{

src/Microsoft.AspNet.Http.Features/Authentication/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.Authentication
6+
namespace Microsoft.AspNet.Http.Features.Authentication
77
{
88
public interface IHttpAuthenticationFeature
99
{

src/Microsoft.AspNet.Http.Features/Authentication/SignInContext.cs

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

9-
namespace Microsoft.AspNet.Http.Authentication
9+
namespace Microsoft.AspNet.Http.Features.Authentication
1010
{
1111
public class SignInContext
1212
{

0 commit comments

Comments
 (0)