Compartir a través de


CascadingValueSource<TValue>.NotifyChangedAsync Método

Definición

Sobrecargas

NotifyChangedAsync()

Notifica a los suscriptores que el valor ha cambiado (por ejemplo, si se ha mutado).

NotifyChangedAsync(TValue)

Notifica a los suscriptores que el valor ha cambiado, proporcionando un nuevo valor.

NotifyChangedAsync()

Source:
CascadingValueSource.cs

Notifica a los suscriptores que el valor ha cambiado (por ejemplo, si se ha mutado).

public System.Threading.Tasks.Task NotifyChangedAsync ();
member this.NotifyChangedAsync : unit -> System.Threading.Tasks.Task
Public Function NotifyChangedAsync () As Task

Devoluciones

que Task se completa cuando se han emitido las notificaciones.

Se aplica a

NotifyChangedAsync(TValue)

Source:
CascadingValueSource.cs

Notifica a los suscriptores que el valor ha cambiado, proporcionando un nuevo valor.

public System.Threading.Tasks.Task NotifyChangedAsync (TValue newValue);
member this.NotifyChangedAsync : 'Value -> System.Threading.Tasks.Task
Public Function NotifyChangedAsync (newValue As TValue) As Task

Parámetros

newValue
TValue

Devoluciones

que Task se completa cuando se han emitido las notificaciones.

Se aplica a