IHubFilter Interface

Definition

The filter abstraction for hub method invocations.

public interface class IHubFilter
public interface IHubFilter
type IHubFilter = interface
Public Interface IHubFilter

Methods

InvokeMethodAsync(HubInvocationContext, Func<HubInvocationContext,ValueTask<Object>>)

Allows handling of all Hub method invocations.

OnConnectedAsync(HubLifetimeContext, Func<HubLifetimeContext,Task>)

Allows handling of the OnConnectedAsync() method.

OnDisconnectedAsync(HubLifetimeContext, Exception, Func<HubLifetimeContext,Exception,Task>)

Allows handling of the OnDisconnectedAsync(Exception) method.

Applies to