Compartilhar via


Evento FileSyncProvider.DetectingChanges

Ocorre quando um diretório está prestes a ser analisado durante uma passagem de detecção de alterações.

Namespace: Microsoft.Synchronization.Files
Assembly: Microsoft.Synchronization.Files (em microsoft.synchronization.files.dll)

Sintaxe

'Declaração
Public Event DetectingChanges As EventHandler(Of DetectingChangesEventArgs)
'Uso
Dim instance As FileSyncProvider
Dim handler As EventHandler(Of DetectingChangesEventArgs)

AddHandler instance.DetectingChanges, handler
public event EventHandler<DetectingChangesEventArgs> DetectingChanges
public:
event EventHandler<DetectingChangesEventArgs^>^ DetectingChanges {
    void add (EventHandler<DetectingChangesEventArgs^>^ value);
    void remove (EventHandler<DetectingChangesEventArgs^>^ value);
}
/** @event */
public void add_DetectingChanges (EventHandler<DetectingChangesEventArgs> value)

/** @event */
public void remove_DetectingChanges (EventHandler<DetectingChangesEventArgs> value)
JScript supports the use of events, but not the declaration of new ones.

Comentários

Este evento dispara uma vez para cada diretório durante uma passagem de detecção de alterações, inclusive para o diretório raiz. Ele dispara antes de a detecção de alterações iniciar para aquela pasta.

A classe DetectingChangesEventArgs fornece o caminho ao diretório que está prestes a ser analisado.

Consulte também

Referência

Classe FileSyncProvider
Membros FileSyncProvider
Namespace Microsoft.Synchronization.Files