@@ -17,9 +17,6 @@ public static class ImageWizardExtensions
1717 /// <summary>
1818 /// Maps ImageWizard endpoint with specified base path.
1919 /// </summary>
20- /// <param name="endpoints"></param>
21- /// <param name="path"></param>
22- /// <returns></returns>
2320 public static IEndpointConventionBuilder MapImageWizard ( this IEndpointRouteBuilder endpoints , string path = ImageWizardDefaults . BasePath )
2421 {
2522 return endpoints
@@ -30,9 +27,6 @@ public static IEndpointConventionBuilder MapImageWizard(this IEndpointRouteBuild
3027 /// <summary>
3128 /// Use ImageWizard middleware with default base path. ("/image")
3229 /// </summary>
33- /// <param name="builder"></param>
34- /// <param name="endpointsHandler"></param>
35- /// <returns></returns>
3630 public static IApplicationBuilder UseImageWizard ( this IApplicationBuilder builder , Action < IImageWizardEndpointBuilder > ? endpointsHandler = null )
3731 {
3832 return UseImageWizard ( builder , ImageWizardDefaults . BasePath , endpointsHandler ) ;
@@ -41,10 +35,6 @@ public static IApplicationBuilder UseImageWizard(this IApplicationBuilder builde
4135 /// <summary>
4236 /// Use ImageWizard middleware with specified base path.
4337 /// </summary>
44- /// <param name="builder"></param>
45- /// <param name="path"></param>
46- /// <param name="endpointsHandler"></param>
47- /// <returns></returns>
4838 public static IApplicationBuilder UseImageWizard ( this IApplicationBuilder builder , string path , Action < IImageWizardEndpointBuilder > ? endpointsHandler = null )
4939 {
5040 builder . Map ( path , x =>
@@ -72,9 +62,6 @@ public static IApplicationBuilder UseImageWizard(this IApplicationBuilder builde
7262 /// <see cref="IUrlSignature"/> -> <see cref="HMACSHA256UrlSignature"/><br/>
7363 /// <see cref="IStreamPool"/> -> <see cref="RecyclableMemoryStreamPool"/><br/>
7464 /// </summary>
75- /// <param name="services"></param>
76- /// <param name="options"></param>
77- /// <returns></returns>
7865 public static IImageWizardBuilder AddImageWizard ( this IServiceCollection services , Action < ImageWizardOptions > ? options = null )
7966 {
8067 if ( options != null )
0 commit comments