共用方式為


ConnectionEndpointRouteBuilderExtensions.MapConnectionHandler 方法

定義

多載

MapConnectionHandler<TConnectionHandler>(IEndpointRouteBuilder, String)

將傳入要求與所提供連接管線的指定路徑對應。

MapConnectionHandler<TConnectionHandler>(IEndpointRouteBuilder, String, Action<HttpConnectionDispatcherOptions>)

將傳入要求與所提供連接管線的指定路徑對應。

MapConnectionHandler<TConnectionHandler>(IEndpointRouteBuilder, String)

將傳入要求與所提供連接管線的指定路徑對應。

public:
generic <typename TConnectionHandler>
 where TConnectionHandler : Microsoft::AspNetCore::Connections::ConnectionHandler[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::ConnectionEndpointRouteBuilder ^ MapConnectionHandler(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, System::String ^ pattern);
public static Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder MapConnectionHandler<TConnectionHandler> (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern) where TConnectionHandler : Microsoft.AspNetCore.Connections.ConnectionHandler;
static member MapConnectionHandler : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string -> Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder (requires 'ConnectionHandler :> Microsoft.AspNetCore.Connections.ConnectionHandler)
<Extension()>
Public Function MapConnectionHandler(Of TConnectionHandler As ConnectionHandler) (endpoints As IEndpointRouteBuilder, pattern As String) As ConnectionEndpointRouteBuilder

類型參數

TConnectionHandler

ConnectionHandler 類型。

參數

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder 加入路由的 。

pattern
String

路由模式。

傳回

ConnectionEndpointRouteBuilder 連線相關聯的端點的 。

適用於

MapConnectionHandler<TConnectionHandler>(IEndpointRouteBuilder, String, Action<HttpConnectionDispatcherOptions>)

將傳入要求與所提供連接管線的指定路徑對應。

public:
generic <typename TConnectionHandler>
 where TConnectionHandler : Microsoft::AspNetCore::Connections::ConnectionHandler[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::ConnectionEndpointRouteBuilder ^ MapConnectionHandler(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, System::String ^ pattern, Action<Microsoft::AspNetCore::Http::Connections::HttpConnectionDispatcherOptions ^> ^ configureOptions);
public static Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder MapConnectionHandler<TConnectionHandler> (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Action<Microsoft.AspNetCore.Http.Connections.HttpConnectionDispatcherOptions> configureOptions) where TConnectionHandler : Microsoft.AspNetCore.Connections.ConnectionHandler;
public static Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder MapConnectionHandler<TConnectionHandler> (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Action<Microsoft.AspNetCore.Http.Connections.HttpConnectionDispatcherOptions>? configureOptions) where TConnectionHandler : Microsoft.AspNetCore.Connections.ConnectionHandler;
static member MapConnectionHandler : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * Action<Microsoft.AspNetCore.Http.Connections.HttpConnectionDispatcherOptions> -> Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder (requires 'ConnectionHandler :> Microsoft.AspNetCore.Connections.ConnectionHandler)
<Extension()>
Public Function MapConnectionHandler(Of TConnectionHandler As ConnectionHandler) (endpoints As IEndpointRouteBuilder, pattern As String, configureOptions As Action(Of HttpConnectionDispatcherOptions)) As ConnectionEndpointRouteBuilder

類型參數

TConnectionHandler

ConnectionHandler 類型。

參數

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder 加入路由的 。

pattern
String

路由模式。

configureOptions
Action<HttpConnectionDispatcherOptions>

用來設定發送器選項的回呼。

傳回

ConnectionEndpointRouteBuilder 連線相關聯的端點的 。

適用於