ConnectionEndpointRouteBuilderExtensions.MapConnectionHandler 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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
參數
- 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
參數
- endpoints
- IEndpointRouteBuilder
要 IEndpointRouteBuilder 加入路由的 。
- pattern
- String
路由模式。
- configureOptions
- Action<HttpConnectionDispatcherOptions>
用來設定發送器選項的回呼。
傳回
與 ConnectionEndpointRouteBuilder 連線相關聯的端點的 。