Click or drag to resize

IHubClient Interface

Interface that defines needed operations for hub client implementations.

Namespace: GSF.Web.Hubs
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public interface IHubClient : IDisposable
View Source

The IHubClient type exposes the following members.

Properties
 NameDescription
Public propertyConnectionID Gets or sets the connection ID of the calling client.
Public propertyHubInstance Gets or sets reference to SignalR hub instance.
Public propertyLogExceptionFunction Gets or sets delegate to use to log exception messages.
Public propertyLogStatusMessageFunction Gets or sets delegate to use to log status messages.
Top
Methods
 NameDescription
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Top
Remarks
This interface is useful for defining classes that should persist per SignalR session.
See Also