Skip to content

Commit 7f38755

Browse files
committed
IEndpointConventionBuilder -> RouteHandlerBuilder in doc comments
1 parent 48e1e34 commit 7f38755

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/Http/Routing/src/Builder/EndpointRouteBuilderExtensions.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public static IEndpointConventionBuilder Map(
198198
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
199199
/// <param name="pattern">The route pattern.</param>
200200
/// <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>
202202
public static RouteHandlerBuilder MapGet(
203203
this IEndpointRouteBuilder endpoints,
204204
string pattern,
@@ -214,7 +214,7 @@ public static RouteHandlerBuilder MapGet(
214214
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
215215
/// <param name="pattern">The route pattern.</param>
216216
/// <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>
218218
public static RouteHandlerBuilder MapPost(
219219
this IEndpointRouteBuilder endpoints,
220220
string pattern,
@@ -230,7 +230,7 @@ public static RouteHandlerBuilder MapPost(
230230
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
231231
/// <param name="pattern">The route pattern.</param>
232232
/// <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>
234234
public static RouteHandlerBuilder MapPut(
235235
this IEndpointRouteBuilder endpoints,
236236
string pattern,
@@ -246,7 +246,7 @@ public static RouteHandlerBuilder MapPut(
246246
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
247247
/// <param name="pattern">The route pattern.</param>
248248
/// <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>
250250
public static RouteHandlerBuilder MapDelete(
251251
this IEndpointRouteBuilder endpoints,
252252
string pattern,
@@ -263,7 +263,7 @@ public static RouteHandlerBuilder MapDelete(
263263
/// <param name="pattern">The route pattern.</param>
264264
/// <param name="handler">The delegate executed when the endpoint is matched.</param>
265265
/// <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>
267267
public static RouteHandlerBuilder MapMethods(
268268
this IEndpointRouteBuilder endpoints,
269269
string pattern,
@@ -310,7 +310,7 @@ static bool ShouldDisableInferredBody(string method)
310310
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
311311
/// <param name="pattern">The route pattern.</param>
312312
/// <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>
314314
public static RouteHandlerBuilder Map(
315315
this IEndpointRouteBuilder endpoints,
316316
string pattern,
@@ -326,7 +326,7 @@ public static RouteHandlerBuilder Map(
326326
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
327327
/// <param name="pattern">The route pattern.</param>
328328
/// <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>
330330
public static RouteHandlerBuilder Map(
331331
this IEndpointRouteBuilder endpoints,
332332
RoutePattern pattern,
@@ -341,7 +341,7 @@ public static RouteHandlerBuilder Map(
341341
/// </summary>
342342
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
343343
/// <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>
345345
/// <remarks>
346346
/// <para>
347347
/// <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
376376
/// <param name="endpoints">The <see cref="IEndpointRouteBuilder"/> to add the route to.</param>
377377
/// <param name="pattern">The route pattern.</param>
378378
/// <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>
380380
/// <remarks>
381381
/// <para>
382382
/// <see cref="MapFallback(IEndpointRouteBuilder, string, Delegate)"/> is intended to handle cases where no

0 commit comments

Comments
 (0)