LocalServiceSecuritySettings.ReconnectTransportOnFailure Property

Definition

Gets or sets a value that indicates whether security sessions attempt to reconnect after transport failures.

public:
 property bool ReconnectTransportOnFailure { bool get(); void set(bool value); };
public bool ReconnectTransportOnFailure { get; set; }
member this.ReconnectTransportOnFailure : bool with get, set
Public Property ReconnectTransportOnFailure As Boolean

Property Value

true if security sessions attempt to reconnect after transport failures; otherwise false. The default is true.

Examples

This example shows how to get the value of this property.

int maxStatefulNegotiations = settings.MaxStatefulNegotiations;
Dim maxStatefulNegotiations = settings.MaxStatefulNegotiations

Remarks

If this flag is set to true, the service allows the client to send messages that correspond to a single security session over multiple transport connections. This is useful in the case of secure WS-ReliableMessaging because the client requires the session to tolerate transient transport failures.

Applies to