1 instantiation of ConnectionEndpointRouteBuilder
Microsoft.AspNetCore.Http.Connections (1)
ConnectionEndpointRouteBuilderExtensions.cs (1)
130
return new
ConnectionEndpointRouteBuilder
(compositeConventionBuilder);
11 references to ConnectionEndpointRouteBuilder
Microsoft.AspNetCore.Http.Connections (9)
ConnectionEndpointRouteBuilderExtensions.cs (9)
27
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
28
public static
ConnectionEndpointRouteBuilder
MapConnections(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern, Action<IConnectionBuilder> configure) =>
37
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
38
public static
ConnectionEndpointRouteBuilder
MapConnectionHandler<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TConnectionHandler>(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern) where TConnectionHandler : ConnectionHandler
50
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
51
public static
ConnectionEndpointRouteBuilder
MapConnectionHandler<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TConnectionHandler>(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern, Action<HttpConnectionDispatcherOptions>? configureOptions) where TConnectionHandler : ConnectionHandler
56
var
conventionBuilder = endpoints.MapConnections(pattern, options, b =>
82
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
83
public static
ConnectionEndpointRouteBuilder
MapConnections(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern, HttpConnectionDispatcherOptions options, Action<IConnectionBuilder> configure)
Microsoft.AspNetCore.Http.Connections.Tests (1)
MapConnectionHandlerTests.cs (1)
522
var
builder = routes.MapConnectionHandler<TConnectionHandler>(path, configureOptions);
Microsoft.AspNetCore.SignalR (1)
HubEndpointRouteBuilderExtensions.cs (1)
52
var
conventionBuilder = endpoints.MapConnections(pattern, options, b =>