次の方法で共有


IHubConnectionBuilder インターフェイス

定義

HubConnection インスタンスを構成するためのビルダーの抽象化。

public interface class IHubConnectionBuilder : Microsoft::AspNetCore::SignalR::ISignalRBuilder
public interface IHubConnectionBuilder : Microsoft.AspNetCore.SignalR.ISignalRBuilder
type IHubConnectionBuilder = interface
    interface ISignalRBuilder
Public Interface IHubConnectionBuilder
Implements ISignalRBuilder
派生
実装

プロパティ

Services

ビルダー サービス コレクションを取得します。

(継承元 ISignalRBuilder)

メソッド

Build()

HubConnection を作成します。

拡張メソッド

ConfigureLogging(IHubConnectionBuilder, Action<ILoggingBuilder>)

指定された ILoggingBuilder を構成するためのデリゲートを追加します。 これは複数回呼び出すことができます。

WithAutomaticReconnect(IHubConnectionBuilder)

接続が HubConnection 失われた場合に自動的に再接続を試行するように を構成します。 クライアントは既定の 0、2、10、30 秒をそれぞれ待機してから、最大 4 回の再接続試行を試行します。

WithAutomaticReconnect(IHubConnectionBuilder, IRetryPolicy)

接続が HubConnection 失われた場合に自動的に再接続を試行するように を構成します。

WithAutomaticReconnect(IHubConnectionBuilder, TimeSpan[])

接続が HubConnection 失われた場合に自動的に再接続を試行するように を構成します。

WithKeepAliveInterval(IHubConnectionBuilder, TimeSpan)

の KeepAliveInterval を構成します HubConnection

WithServerTimeout(IHubConnectionBuilder, TimeSpan)

の ServerTimeout を構成します HubConnection

WithStatefulReconnect(IHubConnectionBuilder)

サーバーとの HttpConnectionOptions ステートフル再接続をネゴシエートするように を構成します。

WithUrl(IHubConnectionBuilder, String)

HTTP ベースの HubConnection トランスポートを使用して指定した URL に接続するように を構成します。

WithUrl(IHubConnectionBuilder, String, HttpTransportType)

HTTP ベースの HubConnection トランスポートを使用して、指定した URL とトランスポートに接続するように を構成します。

WithUrl(IHubConnectionBuilder, String, HttpTransportType, Action<HttpConnectionOptions>)

HTTP ベースの HubConnection トランスポートを使用して、指定した URL とトランスポートに接続するように を構成します。

WithUrl(IHubConnectionBuilder, String, Action<HttpConnectionOptions>)

HTTP ベースの HubConnection トランスポートを使用して指定した URL に接続するように を構成します。

WithUrl(IHubConnectionBuilder, Uri)

HTTP ベースの HubConnection トランスポートを使用して指定した URL に接続するように を構成します。

WithUrl(IHubConnectionBuilder, Uri, HttpTransportType)

HTTP ベースの HubConnection トランスポートを使用して、指定した URL とトランスポートに接続するように を構成します。

WithUrl(IHubConnectionBuilder, Uri, HttpTransportType, Action<HttpConnectionOptions>)

HTTP ベースの HubConnection トランスポートを使用して、指定した URL とトランスポートに接続するように を構成します。

WithUrl(IHubConnectionBuilder, Uri, Action<HttpConnectionOptions>)

HTTP ベースの HubConnection トランスポートを使用して指定した URL に接続するように を構成します。

WithMessagePackProtocol(IHubConnectionBuilder)

HubConnection インスタンスを構成するためのビルダーの抽象化。

WithMessagePackProtocol(IHubConnectionBuilder, MessagePackHubProtocolOptions)

HubConnection インスタンスを構成するためのビルダーの抽象化。

AddMessagePackProtocol(ISignalRBuilder)

SignalR の MsgPack プロトコルを有効にします。

AddMessagePackProtocol(ISignalRBuilder, Action<MessagePackHubProtocolOptions>)

SignalR の MsgPack プロトコルを有効にし、MsgPack プロトコルのオプションを構成できるようにします。

適用対象