Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 496c0bd

Browse files
authored
Merge pull request #5 from marcominerva/develop
Documentation update
2 parents e691833 + 4ef9cc9 commit 496c0bd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/MinimalHelpers.Binding/SwaggerExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace MinimalHelpers.Binding;
66

77
/// <summary>
8-
/// Provides an extension method for adding an Operation Filter that allows to correctly handle file input in Swagger.
8+
/// Provides an extension method for adding an <see cref="IOperationFilter">Operation Filter</see> that allows to correctly handle file input in Swagger.
99
/// </summary>
1010
/// <remarks>Remember to call the <see cref="RouteHandlerBuilderExtensions.AcceptsFormFile(RouteHandlerBuilder)"/>
1111
/// or <see cref="RouteHandlerBuilderExtensions.AcceptsFormFileCollection(RouteHandlerBuilder)"/> methods
@@ -16,14 +16,15 @@ namespace MinimalHelpers.Binding;
1616
public static class SwaggerExtensions
1717
{
1818
/// <summary>
19-
/// Adds an Operation Filter that allows to correctly handle file input in Swagger.
19+
/// Adds an <see cref="IOperationFilter">Operation Filter</see> that allows to correctly handle file input in Swagger.
2020
/// </summary>
2121
/// <remarks>Remember to call the <see cref="RouteHandlerBuilderExtensions.AcceptsFormFile(RouteHandlerBuilder)"/>
2222
/// or <see cref="RouteHandlerBuilderExtensions.AcceptsFormFileCollection(RouteHandlerBuilder)"/> methods
2323
/// on the endpoint that requires a single or multiple file input.
2424
/// </remarks>
2525
/// <seealso cref="RouteHandlerBuilder"/>
2626
/// <seealso cref="IOperationFilter"/>
27+
/// <seealso cref="SwaggerGenOptions"/>
2728
public static void AddFormFile(this SwaggerGenOptions options)
2829
=> options.OperationFilter<FormFileOperationFilter>();
2930
}

0 commit comments

Comments
 (0)