LocalClientSecuritySettings.ReconnectTransportOnFailure Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 a value that indicates whether security sessions attempt to reconnect after transport failures.
bool reconnect = settings.ReconnectTransportOnFailure;
Dim reconnect As Boolean = settings.ReconnectTransportOnFailure
Remarks
If this flag is set to true
, the client tries to send messages that correspond to a single security session over multiple transport connections. It establishes a new transport connection if the previous connection fails. This is useful in the case of secure WS-ReliableMessaging because the client requires the session to tolerate transient transport failures.