LocalServiceSecuritySettingsElement.MaxStatefulNegotiations Property

Definition

Gets or sets a value that specifies the number of security negotiations that can be active concurrently.

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

Property Value

The number of security negotiations that can be active concurrently. The default value is 1024.

Attributes

Remarks

Negotiation sessions in excess of the limit are queued. They can only be completed when a space below the limit becomes available.

Applies to