Partager via


ObserverManager<TIdentity,TObserver>.Notify Méthode

Définition

Surcharges

Notify(Action<TObserver>, Func<TObserver,Boolean>)

Avertit tous les observateurs qui correspondent au fourni predicate.

Notify(Func<TObserver,Task>, Func<TObserver,Boolean>)

Avertit tous les observateurs.

Notify(Action<TObserver>, Func<TObserver,Boolean>)

Avertit tous les observateurs qui correspondent au fourni predicate.

public void Notify (Action<TObserver> notification, Func<TObserver,bool> predicate = default);
member this.Notify : Action<'Observer> * Func<'Observer, bool> -> unit
Public Sub Notify (notification As Action(Of TObserver), Optional predicate As Func(Of TObserver, Boolean) = Nothing)

Paramètres

notification
Action<TObserver>

Délégué de notification à appeler sur chaque observateur.

predicate
Func<TObserver,Boolean>

Prédicat utilisé pour sélectionner les observateurs à notifier.

S’applique à

Notify(Func<TObserver,Task>, Func<TObserver,Boolean>)

Avertit tous les observateurs.

public System.Threading.Tasks.Task Notify (Func<TObserver,System.Threading.Tasks.Task> notification, Func<TObserver,bool> predicate = default);
member this.Notify : Func<'Observer, System.Threading.Tasks.Task> * Func<'Observer, bool> -> System.Threading.Tasks.Task
Public Function Notify (notification As Func(Of TObserver, Task), Optional predicate As Func(Of TObserver, Boolean) = Nothing) As Task

Paramètres

notification
Func<TObserver,Task>

Délégué de notification à appeler sur chaque observateur.

predicate
Func<TObserver,Boolean>

Prédicat utilisé pour sélectionner les observateurs à notifier.

Retours

Task représentant le travail effectué.

S’applique à