Updated missed doc comment
This commit is contained in:
parent
8eb737a459
commit
55f1d41e08
|
|
@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Builder
|
|||
/// <summary>
|
||||
/// Allows incoming POST request to override method type with type specified in header.
|
||||
/// </summary>
|
||||
/// <param name="builder"></param>
|
||||
/// <param name="builder">The <see cref="IApplicationBuilder"/> instance this method extends.</param>
|
||||
public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder)
|
||||
{
|
||||
if (builder == null)
|
||||
|
|
@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Builder
|
|||
/// <summary>
|
||||
/// Allows incoming POST request to override method type with type specified in form.
|
||||
/// </summary>
|
||||
/// <param name="builder"></param>
|
||||
/// <param name="builder">The <see cref="IApplicationBuilder"/> instance this method extends.</param>
|
||||
/// <param name="options">The <see cref="HttpMethodOverrideOptions"/>.</param>
|
||||
public static IApplicationBuilder UseHttpMethodOverride(this IApplicationBuilder builder, HttpMethodOverrideOptions options)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue