ITransportHeartbeat Interface
.NET Framework 4
Manages tracking the state of connections.
Namespace: Microsoft.AspNet.SignalR.Transports
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface ITransportHeartbeat
'Usage
Dim instance As ITransportHeartbeat
public interface ITransportHeartbeat
public interface class ITransportHeartbeat
type ITransportHeartbeat = interface end
public interface ITransportHeartbeat
The ITransportHeartbeat type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddConnection | Adds a new connection to the list of tracked connections. | |
GetConnections | Gets a list of connections being tracked. | |
MarkConnection | Marks an existing connection as active. | |
RemoveConnection | Removes a connection from the list of tracked connections. |
Top