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

Commit 68be1d1

Browse files
committed
#162 - Change PipelineCore namespace to Http.Core. Part-1.
1 parent 4fb2164 commit 68be1d1

Some content is hidden

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

53 files changed

+77
-117
lines changed

src/Microsoft.AspNet.Owin/OwinEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using Microsoft.AspNet.Http;
1717
using Microsoft.AspNet.HttpFeature;
1818
using Microsoft.AspNet.HttpFeature.Security;
19-
using Microsoft.AspNet.PipelineCore.Security;
19+
using Microsoft.AspNet.Http.Core.Security;
2020

2121
namespace Microsoft.AspNet.Owin
2222
{

src/Microsoft.AspNet.Owin/OwinExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.AspNet.Http;
88
using Microsoft.AspNet.FeatureModel;
99
using Microsoft.AspNet.Owin;
10-
using Microsoft.AspNet.PipelineCore;
10+
using Microsoft.AspNet.Http.Core;
1111

1212
namespace Microsoft.AspNet.Builder
1313
{

src/Microsoft.AspNet.PipelineCore/BufferingHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.AspNet.Http;
77
using Microsoft.AspNet.WebUtilities;
88

9-
namespace Microsoft.AspNet.PipelineCore
9+
namespace Microsoft.AspNet.Http.Core
1010
{
1111
public static class BufferingHelper
1212
{

src/Microsoft.AspNet.PipelineCore/Collections/FormCollection.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.Http;
66

7-
namespace Microsoft.AspNet.PipelineCore.Collections
7+
namespace Microsoft.AspNet.Http.Core.Collections
88
{
99
/// <summary>
1010
/// Contains the parsed form values.

src/Microsoft.AspNet.PipelineCore/Collections/FormFileCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.AspNet.Http;
66
using Microsoft.Net.Http.Headers;
77

8-
namespace Microsoft.AspNet.PipelineCore.Collections
8+
namespace Microsoft.AspNet.Http.Core.Collections
99
{
1010
public class FormFileCollection : List<IFormFile>, IFormFileCollection
1111
{

src/Microsoft.AspNet.PipelineCore/Collections/HeaderDictionary.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
using System.Linq;
88
using Microsoft.AspNet.Http.Infrastructure;
99
using Microsoft.AspNet.Http;
10-
using Microsoft.AspNet.PipelineCore.Infrastructure;
10+
using Microsoft.AspNet.Http.Core.Infrastructure;
1111

12-
namespace Microsoft.AspNet.PipelineCore.Collections
12+
namespace Microsoft.AspNet.Http.Core.Collections
1313
{
1414
/// <summary>
1515
/// Represents a wrapper for owin.RequestHeaders and owin.ResponseHeaders.

src/Microsoft.AspNet.PipelineCore/Collections/ItemsDictionary.cs

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

7-
namespace Microsoft.AspNet.PipelineCore
7+
namespace Microsoft.AspNet.Http.Core
88
{
99
public class ItemsDictionary : IDictionary<object, object>
1010
{

src/Microsoft.AspNet.PipelineCore/Collections/ReadableStringCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Collections.Generic;
77
using Microsoft.AspNet.Http;
88

9-
namespace Microsoft.AspNet.PipelineCore.Collections
9+
namespace Microsoft.AspNet.Http.Core.Collections
1010
{
1111
/// <summary>
1212
/// Accessors for query, forms, etc.

src/Microsoft.AspNet.PipelineCore/Collections/RequestCookiesCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
using System.Collections;
66
using System.Collections.Generic;
77
using Microsoft.AspNet.Http;
8-
using Microsoft.AspNet.PipelineCore.Infrastructure;
8+
using Microsoft.AspNet.Http.Core.Infrastructure;
99

10-
namespace Microsoft.AspNet.PipelineCore.Collections
10+
namespace Microsoft.AspNet.Http.Core.Collections
1111
{
1212
public class RequestCookiesCollection : IReadableStringCollection
1313
{

src/Microsoft.AspNet.PipelineCore/Collections/ResponseCookies.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.AspNet.Http;
99
using Microsoft.AspNet.Http.Infrastructure;
1010

11-
namespace Microsoft.AspNet.PipelineCore.Collections
11+
namespace Microsoft.AspNet.Http.Core.Collections
1212
{
1313
/// <summary>
1414
/// A wrapper for the response Set-Cookie header

0 commit comments

Comments
 (0)