CascadingValueSource<TValue>.NotifyChangedAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
NotifyChangedAsync() |
通知订阅者该值已更改 (例如,如果该值已) 发生更改。 |
NotifyChangedAsync(TValue) |
通知订阅者该值已更改,并提供新值。 |
NotifyChangedAsync()
- Source:
- CascadingValueSource.cs
- Source:
- CascadingValueSource.cs
通知订阅者该值已更改 (例如,如果该值已) 发生更改。
public System.Threading.Tasks.Task NotifyChangedAsync ();
member this.NotifyChangedAsync : unit -> System.Threading.Tasks.Task
Public Function NotifyChangedAsync () As Task
返回
在 Task 发出通知时完成的 。
适用于
NotifyChangedAsync(TValue)
- Source:
- CascadingValueSource.cs
- Source:
- CascadingValueSource.cs
通知订阅者该值已更改,并提供新值。
public System.Threading.Tasks.Task NotifyChangedAsync (TValue newValue);
member this.NotifyChangedAsync : 'Value -> System.Threading.Tasks.Task
Public Function NotifyChangedAsync (newValue As TValue) As Task
参数
- newValue
- TValue
返回
在 Task 发出通知时完成的 。