@@ -5,20 +5,13 @@ namespace Microsoft.AspNetCore.Builder
5
5
{
6
6
public static partial class EndpointRouteBuilderExtensions
7
7
{
8
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , Microsoft . AspNetCore . Routing . Patterns . RoutePattern pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
9
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , Microsoft . AspNetCore . Routing . Patterns . RoutePattern pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
10
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
11
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
12
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapDelete ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
13
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapDelete ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
14
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapGet ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
15
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapGet ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
16
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPost ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
17
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPost ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
18
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPut ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
19
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPut ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , params object [ ] metadata ) { throw null ; }
20
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapVerbs ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , System . Collections . Generic . IList < string > httpMethods , params object [ ] metadata ) { throw null ; }
21
- public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapVerbs ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , string displayName , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate , System . Collections . Generic . IList < string > httpMethods , params object [ ] metadata ) { throw null ; }
8
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , Microsoft . AspNetCore . Routing . Patterns . RoutePattern pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
9
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder Map ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
10
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapDelete ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
11
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapGet ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
12
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapMethods ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , System . Collections . Generic . IEnumerable < string > httpMethods , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
13
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPost ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
14
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder MapPut ( this Microsoft . AspNetCore . Routing . IEndpointRouteBuilder routes , string pattern , Microsoft . AspNetCore . Http . RequestDelegate requestDelegate ) { throw null ; }
22
15
}
23
16
public static partial class EndpointRoutingApplicationBuilderExtensions
24
17
{
@@ -51,6 +44,9 @@ public static partial class RoutingBuilderExtensions
51
44
public static partial class RoutingEndpointConventionBuilderExtensions
52
45
{
53
46
public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder RequireHost ( this Microsoft . AspNetCore . Builder . IEndpointConventionBuilder builder , params string [ ] hosts ) { throw null ; }
47
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder WithDisplayName ( this Microsoft . AspNetCore . Builder . IEndpointConventionBuilder builder , System . Func < Microsoft . AspNetCore . Builder . EndpointBuilder , string > func ) { throw null ; }
48
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder WithDisplayName ( this Microsoft . AspNetCore . Builder . IEndpointConventionBuilder builder , string displayName ) { throw null ; }
49
+ public static Microsoft . AspNetCore . Builder . IEndpointConventionBuilder WithMetadata ( this Microsoft . AspNetCore . Builder . IEndpointConventionBuilder builder , params object [ ] items ) { throw null ; }
54
50
}
55
51
}
56
52
namespace Microsoft . AspNetCore . Routing
0 commit comments