CascadingValueSource<TValue>.NotifyChangedAsync Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
 
- Source:
 - CascadingValueSource.cs
 
- 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
 
- Source:
 - CascadingValueSource.cs
 
- 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.