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)时,其连接将计入限制而不是 MaxConcurrentUpgradedConnectionsMaxConcurrentConnections

适用于