Fired when the current server has failed, but there is already another server ready to fail over to. The system is already trying to connect to other servers in the list. However, it will not resubmit any queries until this call has completed. If you do not want the queries to be resubmitted, you can close all the queries before returning from this call.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public event EventHandler<SmoothFailoverEventArgs> SmoothFailoverEvent
Public Event SmoothFailoverEvent As EventHandler(Of SmoothFailoverEventArgs)
public:
 event EventHandler<SmoothFailoverEventArgs^>^ SmoothFailoverEvent {
	void add (EventHandler<SmoothFailoverEventArgs^>^ value);
	void remove (EventHandler<SmoothFailoverEventArgs^>^ value);
}

See Also