ObserverManager<TIdentity,TObserver>.Notify Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Notify(Action<TObserver>, Func<TObserver,Boolean>) |
Avertit tous les observateurs qui correspondent au fourni |
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.
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
Retours
Task représentant le travail effectué.