Connection.EventKeyRemoved Event
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Infrastructure
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Event EventKeyRemoved As Action(Of String)
'Usage
Dim instance As Connection
Dim handler As Action(Of String)
AddHandler instance.EventKeyRemoved, handler
public event Action<string> EventKeyRemoved
public:
virtual event Action<String^>^ EventKeyRemoved {
void add (Action<String^>^ value);
void remove (Action<String^>^ value);
}
abstract EventKeyRemoved : IEvent<Action<string>,
EventArgs>
override EventKeyRemoved : IEvent<Action<string>,
EventArgs>
JScript supports the use of events, but not the declaration of new ones.