diff --git a/src/Http/Http.Abstractions/src/HttpMethods.cs b/src/Http/Http.Abstractions/src/HttpMethods.cs index 89f96a73fe..a921ea0a84 100644 --- a/src/Http/Http.Abstractions/src/HttpMethods.cs +++ b/src/Http/Http.Abstractions/src/HttpMethods.cs @@ -33,7 +33,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is CONNECT; otherwise, . /// public static bool IsConnect(string method) { @@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is DELETE; otherwise, . /// public static bool IsDelete(string method) { @@ -57,7 +57,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is GET; otherwise, . /// public static bool IsGet(string method) { @@ -69,7 +69,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is HEAD; otherwise, . /// public static bool IsHead(string method) { @@ -81,7 +81,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is OPTIONS; otherwise, . /// public static bool IsOptions(string method) { @@ -93,7 +93,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is PATCH; otherwise, . /// public static bool IsPatch(string method) { @@ -105,7 +105,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is POST; otherwise, . /// public static bool IsPost(string method) { @@ -117,7 +117,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is PUT; otherwise, . /// public static bool IsPut(string method) { @@ -129,7 +129,7 @@ namespace Microsoft.AspNetCore.Http /// /// The HTTP request method. /// - /// The System.Boolean. + /// if the method is TRACE; otherwise, . /// public static bool IsTrace(string method) { diff --git a/src/Http/Http/src/DefaultHttpContext.cs b/src/Http/Http/src/DefaultHttpContext.cs index 303dfbb3bc..06f4299191 100644 --- a/src/Http/Http/src/DefaultHttpContext.cs +++ b/src/Http/Http/src/DefaultHttpContext.cs @@ -89,16 +89,16 @@ namespace Microsoft.AspNetCore.Http /// /// Gets or set the for this instance. /// - /// - /// The Microsoft.AspNetCore.Http.Features.FormOptions. + /// + /// /// public FormOptions FormOptions { get; set; } /// /// Gets or sets the for this instance. /// - /// - /// The Microsoft.Extensions.DependencyInjection.IServiceScopeFactory. + /// + /// /// public IServiceScopeFactory ServiceScopeFactory { get; set; } diff --git a/src/Servers/HttpSys/src/WebHostBuilderHttpSysExtensions.cs b/src/Servers/HttpSys/src/WebHostBuilderHttpSysExtensions.cs index 46b9eb8b4c..d8a9deb8c3 100644 --- a/src/Servers/HttpSys/src/WebHostBuilderHttpSysExtensions.cs +++ b/src/Servers/HttpSys/src/WebHostBuilderHttpSysExtensions.cs @@ -21,7 +21,7 @@ namespace Microsoft.AspNetCore.Hosting /// The Microsoft.AspNetCore.Hosting.IWebHostBuilder to configure. /// /// - /// The Microsoft.AspNetCore.Hosting.IWebHostBuilder. + /// A reference to the parameter object. /// public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder) { @@ -50,7 +50,7 @@ namespace Microsoft.AspNetCore.Hosting /// A callback to configure Http.sys options. /// /// - /// The Microsoft.AspNetCore.Hosting.IWebHostBuilder. + /// A reference to the parameter object. /// public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder, Action options) {