Share via


Connection.EventKeyAdded Event

.NET Framework 4

Namespace:  Microsoft.AspNet.SignalR.Infrastructure
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

Syntax

'Declaration
Public Event EventKeyAdded As Action(Of String)
'Usage
Dim instance As Connection 
Dim handler As Action(Of String)

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

Implements

ISubscriber.EventKeyAdded

See Also

Reference

Connection Class

Microsoft.AspNet.SignalR.Infrastructure Namespace