CascadingValueSource<TValue>.NotifyChangedAsync Method

Definition

Overloads

NotifyChangedAsync()

Notifies subscribers that the value has changed (for example, if it has been mutated).

NotifyChangedAsync(TValue)

Notifies subscribers that the value has changed, supplying a new value.

NotifyChangedAsync()

Source:
CascadingValueSource.cs

Notifies subscribers that the value has changed (for example, if it has been mutated).

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

Returns

A Task that completes when the notifications have been issued.

Applies to

NotifyChangedAsync(TValue)

Source:
CascadingValueSource.cs

Notifies subscribers that the value has changed, supplying a new value.

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

Parameters

newValue
TValue

Returns

A Task that completes when the notifications have been issued.

Applies to