Connection.Reconnecting Event
.NET Framework 4
Occurs when the Connection starts reconnecting after an error.
Namespace: Microsoft.AspNet.SignalR.Client
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)
Syntax
'Declaration
Public Event Reconnecting As Action
'Usage
Dim instance As Connection
Dim handler As Action
AddHandler instance.Reconnecting, handler
public event Action Reconnecting
public:
event Action^ Reconnecting {
void add (Action^ value);
void remove (Action^ value);
}
member Reconnecting : IEvent<Action,
EventArgs>
JScript supports the use of events, but not the declaration of new ones.