IVsAsyncFileChangeEx2.AdviseFileChangesAsync 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.
Crea sottoscrizioni per le modifiche per più file.
public System.Threading.Tasks.Task<uint[]> AdviseFileChangesAsync (System.Collections.Generic.IReadOnlyCollection<string> filenames, Microsoft.VisualStudio.Shell.Interop._VSFILECHANGEFLAGS filter, Microsoft.VisualStudio.Shell.Interop.IVsFreeThreadedFileChangeEvents2 sink, System.Threading.CancellationToken cancellationToken);
abstract member AdviseFileChangesAsync : System.Collections.Generic.IReadOnlyCollection<string> * Microsoft.VisualStudio.Shell.Interop._VSFILECHANGEFLAGS * Microsoft.VisualStudio.Shell.Interop.IVsFreeThreadedFileChangeEvents2 * System.Threading.CancellationToken -> System.Threading.Tasks.Task<uint32[]>
Public Function AdviseFileChangesAsync (filenames As IReadOnlyCollection(Of String), filter As _VSFILECHANGEFLAGS, sink As IVsFreeThreadedFileChangeEvents2, cancellationToken As CancellationToken) As Task(Of UInteger())
Parametri
- filenames
- IReadOnlyCollection<String>
Nomi dei file da sottoscrivere.
- filter
- _VSFILECHANGEFLAGS
Flag che descrivono le modifiche da notificare.
Sink eventi.
- cancellationToken
- CancellationToken
Token di annullamento.
Restituisce
Attività che verrà completata dopo la configurazione delle sottoscrizioni. Il risultato dell'attività sarà i cookie di sottoscrizione. Il primo cookie nella matrice restituita è il cookie per il primo file in filenames
e così via.