NetTcpBindingElement.MaxConnections 属性

定义

获取或设置一个值,该值指定服务能够分别创建和接受的最大出站和入站连接数。

public:
 property int MaxConnections { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxConnections", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int MaxConnections { get; set; }
[System.Configuration.ConfigurationProperty("maxConnections", DefaultValue=0)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxConnections { get; set; }
[<System.Configuration.ConfigurationProperty("maxConnections", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.MaxConnections : int with get, set
[<System.Configuration.ConfigurationProperty("maxConnections", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxConnections : int with get, set
Public Property MaxConnections As Integer

属性值

Int32

服务能够分别创建和接受的最大出站和入站连接数。 默认值为 10。

属性

注解

传入和传出连接分别根据此属性指定的限制进行计数。 超出此限制的连接需要排队,直到等待接受的连接数低于限制值。

适用于