Connection.Reconnected Event

.NET Framework 4.5

Occurs when the Connection successfully reconnects after a timeout.

Namespace:  Microsoft.AspNet.SignalR.Client
Assembly:  Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)

Syntax

'Declaration
Public Event Reconnected As Action
'Usage
Dim instance As Connection 
Dim handler As Action 

AddHandler instance.Reconnected, handler
public event Action Reconnected
public:
 event Action^ Reconnected {
    void add (Action^ value);
    void remove (Action^ value);
}
member Reconnected : IEvent<Action,
    EventArgs>
JScript supports the use of events, but not the declaration of new ones.

See Also

Reference

Connection Class

Microsoft.AspNet.SignalR.Client Namespace