KestrelServerLimits.MaxConcurrentUpgradedConnections プロパティ

定義

開いているアップグレードされた接続の最大数を取得または設定します。 null に設定すると、アップグレードされた接続の数は無制限になります。 アップグレードされた接続とは、HTTP から別のプロトコル (WebSocket など) に切り替えられた接続のことです。

既定値は null です。

public:
 property Nullable<long> MaxConcurrentUpgradedConnections { Nullable<long> get(); void set(Nullable<long> value); };
public long? MaxConcurrentUpgradedConnections { get; set; }
member this.MaxConcurrentUpgradedConnections : Nullable<int64> with get, set
Public Property MaxConcurrentUpgradedConnections As Nullable(Of Long)

プロパティ値

注釈

接続が WebSocket などの別のプロトコルにアップグレードされると、その接続は の代わりにMaxConcurrentConnections制限に対してMaxConcurrentUpgradedConnectionsカウントされます。

適用対象