diff --git a/src/Http/Http.Abstractions/src/HttpMethods.cs b/src/Http/Http.Abstractions/src/HttpMethods.cs index 9e4b94949a..07a6a15a51 100644 --- a/src/Http/Http.Abstractions/src/HttpMethods.cs +++ b/src/Http/Http.Abstractions/src/HttpMethods.cs @@ -29,7 +29,7 @@ namespace Microsoft.AspNetCore.Http public static readonly string Trace = "TRACE"; /// - /// Verifies the HTTP request method is CONNECT. + /// Returns a value that indicates if the HTTP request method is CONNECT. /// /// HTTP request method. public static bool IsConnect(string method) @@ -38,7 +38,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is DELETE. + /// Returns a value that indicates if the HTTP request method is DELETE. /// /// HTTP request method. public static bool IsDelete(string method) @@ -47,7 +47,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is GET. + /// Returns a value that indicates if the HTTP request method is GET. /// /// HTTP request method. public static bool IsGet(string method) @@ -56,7 +56,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is HEAD. + /// Returns a value that indicates if the HTTP request method is HEAD. /// /// HTTP request method. public static bool IsHead(string method) @@ -65,7 +65,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is OPTIONS. + /// Returns a value that indicates if the HTTP request method is OPTIONS. /// /// HTTP request method. public static bool IsOptions(string method) @@ -74,7 +74,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is PATCH. + /// Returns a value that indicates if the HTTP request method is PATCH. /// /// HTTP request method. public static bool IsPatch(string method) @@ -83,7 +83,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is POST. + /// Returns a value that indicates if the HTTP request method is POST. /// /// HTTP request method. public static bool IsPost(string method) @@ -92,7 +92,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is PUT. + /// Returns a value that indicates if the HTTP request method is PUT. /// /// HTTP request method. public static bool IsPut(string method) @@ -101,7 +101,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Verifies the HTTP request method is TRACE. + /// Returns a value that indicates if the HTTP request method is TRACE. /// /// HTTP request method. public static bool IsTrace(string method) diff --git a/src/Middleware/HttpsPolicy/src/HttpsRedirectionMiddleware.cs b/src/Middleware/HttpsPolicy/src/HttpsRedirectionMiddleware.cs index e2926593e2..51925f22ff 100644 --- a/src/Middleware/HttpsPolicy/src/HttpsRedirectionMiddleware.cs +++ b/src/Middleware/HttpsPolicy/src/HttpsRedirectionMiddleware.cs @@ -29,7 +29,7 @@ namespace Microsoft.AspNetCore.HttpsPolicy private readonly ILogger _logger; /// - /// Initializes the HttpsRedirectionMiddleware. + /// Initializes . /// /// /// diff --git a/src/Middleware/HttpsPolicy/src/HttpsRedirectionOptions.cs b/src/Middleware/HttpsPolicy/src/HttpsRedirectionOptions.cs index 85e177ec25..0e1c625bd7 100644 --- a/src/Middleware/HttpsPolicy/src/HttpsRedirectionOptions.cs +++ b/src/Middleware/HttpsPolicy/src/HttpsRedirectionOptions.cs @@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.HttpsPolicy { /// - /// Options for the HttpsRedirection middleware. + /// Options for the HTTPS Redirection Middleware. /// public class HttpsRedirectionOptions {