diff --git a/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationDescription.cs b/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationDescription.cs
index 0ee24024e5..d6f9bf08a7 100644
--- a/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationDescription.cs
+++ b/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationDescription.cs
@@ -36,7 +36,7 @@ namespace Microsoft.AspNet.Http.Authentication
///
/// Contains metadata about the authentication provider.
///
- public IDictionary Items { get; private set; }
+ public IDictionary Items { get; }
///
/// Gets or sets the name used to reference the authentication middleware instance.
diff --git a/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationProperties.cs b/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationProperties.cs
index ab17713ab0..5c815ba37b 100644
--- a/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationProperties.cs
+++ b/src/Microsoft.AspNet.Http.Abstractions/Authentication/AuthenticationProperties.cs
@@ -40,7 +40,7 @@ namespace Microsoft.AspNet.Http.Authentication
///
/// State values about the authentication session.
///
- public IDictionary Items { get; private set; }
+ public IDictionary Items { get; }
///
/// Gets or sets whether the authentication session is persisted across multiple requests.
diff --git a/src/Microsoft.AspNet.Http.Extensions/FormFileExtensions.cs b/src/Microsoft.AspNet.Http.Extensions/FormFileExtensions.cs
index 7b13bc2ac3..fa68ae340a 100644
--- a/src/Microsoft.AspNet.Http.Extensions/FormFileExtensions.cs
+++ b/src/Microsoft.AspNet.Http.Extensions/FormFileExtensions.cs
@@ -40,9 +40,10 @@ namespace Microsoft.AspNet.Http
///
/// The .
/// The name of the file to create.
- public async static Task SaveAsAsync(this IFormFile formFile,
- string filename,
- CancellationToken cancellationToken = default(CancellationToken))
+ public async static Task SaveAsAsync(
+ this IFormFile formFile,
+ string filename,
+ CancellationToken cancellationToken = default(CancellationToken))
{
if (formFile == null)
{
diff --git a/src/Microsoft.AspNet.Http.Extensions/RequestHeaders.cs b/src/Microsoft.AspNet.Http.Extensions/RequestHeaders.cs
index efaa73fc14..4b31e30615 100644
--- a/src/Microsoft.AspNet.Http.Extensions/RequestHeaders.cs
+++ b/src/Microsoft.AspNet.Http.Extensions/RequestHeaders.cs
@@ -20,7 +20,7 @@ namespace Microsoft.AspNet.Http.Headers
Headers = headers;
}
- public IHeaderDictionary Headers { get; private set; }
+ public IHeaderDictionary Headers { get; }
public IList Accept
{
diff --git a/src/Microsoft.AspNet.Http.Extensions/ResponseHeaders.cs b/src/Microsoft.AspNet.Http.Extensions/ResponseHeaders.cs
index de719d58ec..e7cb97ad3f 100644
--- a/src/Microsoft.AspNet.Http.Extensions/ResponseHeaders.cs
+++ b/src/Microsoft.AspNet.Http.Extensions/ResponseHeaders.cs
@@ -21,7 +21,7 @@ namespace Microsoft.AspNet.Http.Headers
Headers = headers;
}
- public IHeaderDictionary Headers { get; private set; }
+ public IHeaderDictionary Headers { get; }
public CacheControlHeaderValue CacheControl
{
diff --git a/src/Microsoft.AspNet.Http.Extensions/UriHelper.cs b/src/Microsoft.AspNet.Http.Extensions/UriHelper.cs
index 3e137acc2e..84143af242 100644
--- a/src/Microsoft.AspNet.Http.Extensions/UriHelper.cs
+++ b/src/Microsoft.AspNet.Http.Extensions/UriHelper.cs
@@ -18,7 +18,8 @@ namespace Microsoft.AspNet.Http.Extensions
///
///
///
- public static string Encode(PathString pathBase = new PathString(),
+ public static string Encode(
+ PathString pathBase = new PathString(),
PathString path = new PathString(),
QueryString query = new QueryString(),
FragmentString fragment = new FragmentString())
@@ -38,7 +39,8 @@ namespace Microsoft.AspNet.Http.Extensions
///
///
///
- public static string Encode(string scheme,
+ public static string Encode(
+ string scheme,
HostString host,
PathString pathBase = new PathString(),
PathString path = new PathString(),
diff --git a/src/Microsoft.AspNet.Http/ItemsDictionary.cs b/src/Microsoft.AspNet.Http/ItemsDictionary.cs
index e191516849..90e9cd3138 100644
--- a/src/Microsoft.AspNet.Http/ItemsDictionary.cs
+++ b/src/Microsoft.AspNet.Http/ItemsDictionary.cs
@@ -18,7 +18,7 @@ namespace Microsoft.AspNet.Http.Internal
Items = items;
}
- public IDictionary