SubscriptionClient.RegisterSessionHandlerAsync Method

Definition

Overloads

RegisterSessionHandlerAsync(Type)

Asynchronously registers the handler for the client session.

RegisterSessionHandlerAsync(Type, SessionHandlerOptions)

Asynchronously registers the handler for the client session.

RegisterSessionHandlerAsync(Type)

Asynchronously registers the handler for the client session.

public System.Threading.Tasks.Task RegisterSessionHandlerAsync (Type handlerType);
member this.RegisterSessionHandlerAsync : Type -> System.Threading.Tasks.Task
Public Function RegisterSessionHandlerAsync (handlerType As Type) As Task

Parameters

handlerType
Type

The type of the handler.

Returns

The task object representing the asynchronous operation.

Applies to

RegisterSessionHandlerAsync(Type, SessionHandlerOptions)

Asynchronously registers the handler for the client session.

public System.Threading.Tasks.Task RegisterSessionHandlerAsync (Type handlerType, Microsoft.ServiceBus.Messaging.SessionHandlerOptions options);
member this.RegisterSessionHandlerAsync : Type * Microsoft.ServiceBus.Messaging.SessionHandlerOptions -> System.Threading.Tasks.Task
Public Function RegisterSessionHandlerAsync (handlerType As Type, options As SessionHandlerOptions) As Task

Parameters

handlerType
Type

The type of the handler.

options
SessionHandlerOptions

The session handler options.

Returns

The task object representing the asynchronous operation.

Applies to