DynamicHub Class

Definition

A base class for SignalR hubs that use dynamic to represent client invocations.

public ref class DynamicHub abstract : Microsoft::AspNetCore::SignalR::Hub
public abstract class DynamicHub : Microsoft.AspNetCore.SignalR.Hub
type DynamicHub = class
    inherit Hub
Public MustInherit Class DynamicHub
Inherits Hub
Inheritance
DynamicHub

Constructors

DynamicHub()

Properties

Clients

Gets or sets an object that can be used to invoke methods on the clients connected to this hub.

Context

Gets or sets the hub caller context.

(Inherited from Hub)
Groups

Gets or sets the group manager.

(Inherited from Hub)

Methods

Dispose() (Inherited from Hub)
Dispose(Boolean)

Releases all resources currently used by this Hub instance.

(Inherited from Hub)
OnConnectedAsync()

Called when a new connection is established with the hub.

(Inherited from Hub)
OnDisconnectedAsync(Exception)

Called when a connection with the hub is terminated.

(Inherited from Hub)

Applies to