Fired when the current server has failed and there is no other server ready to fail over to. This will be called just before the process of resubmitting all the queries to the new primary server. 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<RoughFailoverEventArgs> RoughFailoverEvent
Public Event RoughFailoverEvent As EventHandler(Of RoughFailoverEventArgs)
public:
 event EventHandler<RoughFailoverEventArgs^>^ RoughFailoverEvent {
	void add (EventHandler<RoughFailoverEventArgs^>^ value);
	void remove (EventHandler<RoughFailoverEventArgs^>^ value);
}

See Also