AwaitExtensions.WaitForChangeAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce un'attività che viene completata quando cambia la chiave del Registro di sistema specificata.
public static System.Threading.Tasks.Task WaitForChangeAsync (this Microsoft.Win32.RegistryKey registryKey, bool watchSubtree = true, Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters change = Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters.Subkey | Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters.Value, System.Threading.CancellationToken cancellationToken = default);
static member WaitForChangeAsync : Microsoft.Win32.RegistryKey * bool * Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function WaitForChangeAsync (registryKey As RegistryKey, Optional watchSubtree As Boolean = true, Optional change As RegistryChangeNotificationFilters = Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters.Subkey | Microsoft.VisualStudio.Threading.RegistryChangeNotificationFilters.Value, Optional cancellationToken As CancellationToken = Nothing) As Task
Parametri
- registryKey
- RegistryKey
Chiave del Registro di sistema per watch per le modifiche.
- watchSubtree
- Boolean
true
per watch anche le chiavi discendenti; false
per watch solo questa chiave senza discendenti.
Indica i tipi di modifiche apportate a watch per.
- cancellationToken
- CancellationToken
Token che può essere annullato per rilasciare le risorse dalla visualizzazione delle modifiche e completare l'attività restituita come annullato.
Restituisce
Attività che viene completata quando viene modificata la chiave del Registro di sistema, l'handle viene chiuso o dopo l'annullamento.