@@ -198,7 +198,7 @@ public static IEndpointConventionBuilder Map(
198
198
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
199
199
/// <param name="pattern">The route pattern.</param>
200
200
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
201
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
201
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
202
202
public static RouteHandlerBuilder MapGet (
203
203
this IEndpointRouteBuilder endpoints ,
204
204
string pattern ,
@@ -214,7 +214,7 @@ public static RouteHandlerBuilder MapGet(
214
214
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
215
215
/// <param name="pattern">The route pattern.</param>
216
216
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
217
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
217
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
218
218
public static RouteHandlerBuilder MapPost (
219
219
this IEndpointRouteBuilder endpoints ,
220
220
string pattern ,
@@ -230,7 +230,7 @@ public static RouteHandlerBuilder MapPost(
230
230
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
231
231
/// <param name="pattern">The route pattern.</param>
232
232
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
233
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
233
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
234
234
public static RouteHandlerBuilder MapPut (
235
235
this IEndpointRouteBuilder endpoints ,
236
236
string pattern ,
@@ -246,7 +246,7 @@ public static RouteHandlerBuilder MapPut(
246
246
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
247
247
/// <param name="pattern">The route pattern.</param>
248
248
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
249
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
249
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
250
250
public static RouteHandlerBuilder MapDelete (
251
251
this IEndpointRouteBuilder endpoints ,
252
252
string pattern ,
@@ -263,7 +263,7 @@ public static RouteHandlerBuilder MapDelete(
263
263
/// <param name="pattern">The route pattern.</param>
264
264
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
265
265
/// <param name="httpMethods">HTTP methods that the endpoint will match.</param>
266
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
266
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
267
267
public static RouteHandlerBuilder MapMethods (
268
268
this IEndpointRouteBuilder endpoints ,
269
269
string pattern ,
@@ -310,7 +310,7 @@ static bool ShouldDisableInferredBody(string method)
310
310
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
311
311
/// <param name="pattern">The route pattern.</param>
312
312
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
313
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
313
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
314
314
public static RouteHandlerBuilder Map (
315
315
this IEndpointRouteBuilder endpoints ,
316
316
string pattern ,
@@ -326,7 +326,7 @@ public static RouteHandlerBuilder Map(
326
326
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
327
327
/// <param name="pattern">The route pattern.</param>
328
328
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
329
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
329
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
330
330
public static RouteHandlerBuilder Map (
331
331
this IEndpointRouteBuilder endpoints ,
332
332
RoutePattern pattern ,
@@ -341,7 +341,7 @@ public static RouteHandlerBuilder Map(
341
341
/// </summary>
342
342
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
343
343
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
344
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
344
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
345
345
/// <remarks>
346
346
/// <para>
347
347
/// <see cref="MapFallback(IEndpointRouteBuilder, Delegate)"/> is intended to handle cases where URL path of
@@ -376,7 +376,7 @@ public static RouteHandlerBuilder MapFallback(this IEndpointRouteBuilder endpoin
376
376
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
377
377
/// <param name="pattern">The route pattern.</param>
378
378
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
379
- /// <returns>A <see cref="IEndpointConventionBuilder "/> that can be used to further customize the endpoint.</returns>
379
+ /// <returns>A <see cref="RouteHandlerBuilder "/> that can be used to further customize the endpoint.</returns>
380
380
/// <remarks>
381
381
/// <para>
382
382
/// <see cref="MapFallback(IEndpointRouteBuilder, string, Delegate)"/> is intended to handle cases where no
0 commit comments