Partager via


ConnectionsRouteBuilder.MapConnectionHandler Méthode

Définition

Surcharges

MapConnectionHandler<TConnectionHandler>(PathString)

Mappe les requêtes entrantes avec le chemin spécifié au pipeline de connexion fourni.

MapConnectionHandler<TConnectionHandler>(PathString, Action<HttpConnectionDispatcherOptions>)

Mappe les requêtes entrantes avec le chemin spécifié au pipeline de connexion fourni.

MapConnectionHandler<TConnectionHandler>(PathString)

Source:
ConnectionsRouteBuilder.cs
Source:
ConnectionsRouteBuilder.cs

Mappe les requêtes entrantes avec le chemin spécifié au pipeline de connexion fourni.

public:
generic <typename TConnectionHandler>
 where TConnectionHandler : Microsoft::AspNetCore::Connections::ConnectionHandler void MapConnectionHandler(Microsoft::AspNetCore::Http::PathString path);
public void MapConnectionHandler<TConnectionHandler> (Microsoft.AspNetCore.Http.PathString path) where TConnectionHandler : Microsoft.AspNetCore.Connections.ConnectionHandler;
member this.MapConnectionHandler : Microsoft.AspNetCore.Http.PathString -> unit (requires 'ConnectionHandler :> Microsoft.AspNetCore.Connections.ConnectionHandler)
Public Sub MapConnectionHandler(Of TConnectionHandler As ConnectionHandler) (path As PathString)

Paramètres de type

TConnectionHandler

Type de ConnectionHandler.

Paramètres

path
PathString

chemin d'accès de la requête.

S’applique à

MapConnectionHandler<TConnectionHandler>(PathString, Action<HttpConnectionDispatcherOptions>)

Source:
ConnectionsRouteBuilder.cs
Source:
ConnectionsRouteBuilder.cs

Mappe les requêtes entrantes avec le chemin spécifié au pipeline de connexion fourni.

public:
generic <typename TConnectionHandler>
 where TConnectionHandler : Microsoft::AspNetCore::Connections::ConnectionHandler void MapConnectionHandler(Microsoft::AspNetCore::Http::PathString path, Action<Microsoft::AspNetCore::Http::Connections::HttpConnectionDispatcherOptions ^> ^ configureOptions);
public void MapConnectionHandler<TConnectionHandler> (Microsoft.AspNetCore.Http.PathString path, Action<Microsoft.AspNetCore.Http.Connections.HttpConnectionDispatcherOptions> configureOptions) where TConnectionHandler : Microsoft.AspNetCore.Connections.ConnectionHandler;
member this.MapConnectionHandler : Microsoft.AspNetCore.Http.PathString * Action<Microsoft.AspNetCore.Http.Connections.HttpConnectionDispatcherOptions> -> unit (requires 'ConnectionHandler :> Microsoft.AspNetCore.Connections.ConnectionHandler)
Public Sub MapConnectionHandler(Of TConnectionHandler As ConnectionHandler) (path As PathString, configureOptions As Action(Of HttpConnectionDispatcherOptions))

Paramètres de type

TConnectionHandler

Type de ConnectionHandler.

Paramètres

path
PathString

chemin d'accès de la requête.

configureOptions
Action<HttpConnectionDispatcherOptions>

Rappel pour configurer les options de répartiteur.

S’applique à