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