1 instantiation of ConnectionEndpointRouteBuilder
Microsoft.AspNetCore.Http.Connections (1)
ConnectionEndpointRouteBuilderExtensions.cs (1)
134
return new
ConnectionEndpointRouteBuilder
(compositeConventionBuilder);
11 references to ConnectionEndpointRouteBuilder
Microsoft.AspNetCore.Http.Connections (9)
ConnectionEndpointRouteBuilderExtensions.cs (9)
28
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
29
public static
ConnectionEndpointRouteBuilder
MapConnections(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern, Action<IConnectionBuilder> configure) =>
38
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
39
public static
ConnectionEndpointRouteBuilder
MapConnectionHandler<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TConnectionHandler>(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern) where TConnectionHandler : ConnectionHandler
51
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
52
public static
ConnectionEndpointRouteBuilder
MapConnectionHandler<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TConnectionHandler>(this IEndpointRouteBuilder endpoints, [StringSyntax("Route")] string pattern, Action<HttpConnectionDispatcherOptions>? configureOptions) where TConnectionHandler : ConnectionHandler
57
var
conventionBuilder = endpoints.MapConnections(pattern, options, b =>
83
/// <returns>An <see cref="
ConnectionEndpointRouteBuilder
"/> for endpoints associated with the connections.</returns>
84
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 =>