NotificationHandlerTypeResolver Constructors

Definition

Overloads

NotificationHandlerTypeResolver()

Initializes a new instance of the NotificationHandlerTypeResolver with a default filter for detecting handlers.

NotificationHandlerTypeResolver(Predicate<Type>)

Creates a new NotificationHandlerTypeResolver instance using a predicate to filter types that implement INotificationHandler.

NotificationHandlerTypeResolver()

Initializes a new instance of the NotificationHandlerTypeResolver with a default filter for detecting handlers.

public NotificationHandlerTypeResolver ();
Public Sub New ()

Applies to

NotificationHandlerTypeResolver(Predicate<Type>)

Creates a new NotificationHandlerTypeResolver instance using a predicate to filter types that implement INotificationHandler.

public NotificationHandlerTypeResolver (Predicate<Type> predicate);
new Microsoft.WindowsAzure.Mobile.Service.Notifications.NotificationHandlerTypeResolver : Predicate<Type> -> Microsoft.WindowsAzure.Mobile.Service.Notifications.NotificationHandlerTypeResolver
Public Sub New (predicate As Predicate(Of Type))

Parameters

predicate
Predicate<Type>

The predicate.

Applies to