KestrelServerLimits.MaxConcurrentUpgradedConnections 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置打开的升级连接的最大数目。 如果设置为 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。