Share via


Subscription.Received Event

.NET Framework 4

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

Syntax

'Declaration
Public Event Received As Action(Of IList(Of JToken))
'Usage
Dim instance As Subscription 
Dim handler As Action(Of IList(Of JToken))

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

See Also

Reference

Subscription Class

Microsoft.AspNet.SignalR.Client.Hubs Namespace