LocalServiceSecuritySettingsElement.MaxPendingSessions 属性

定义

获取或设置一个值,该值指定服务支持的最大挂起安全会话数。Gets or sets a value that specifies the maximum number of pending security sessions that the service supports.

public:
 property int MaxPendingSessions { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxPendingSessions", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int MaxPendingSessions { get; set; }
[<System.Configuration.ConfigurationProperty("maxPendingSessions", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.MaxPendingSessions : int with get, set
Public Property MaxPendingSessions As Integer

属性值

Int32

服务支持的最大挂起安全会话数。The maximum number of pending security sessions that the service supports. 默认值为 1000。The default value is 1000.

属性

注解

达到此限制时,所有新客户端都会接收到 SOAP 错误。When this limit is reached, all new clients receive SOAP faults.

适用于