Exemplo n.º 1
0
 public virtual void OnFileMatched(EntryEventArgs e)
 {
 }
Exemplo n.º 2
0
 public override void OnFileVerified(EntryEventArgs e)
 {
     WriteInformation(String.Format("File verified. Path: \"{0}\".", e.Path));
 }
Exemplo n.º 3
0
 public virtual void OnEntryDeleted(EntryEventArgs e)
 {
 }
Exemplo n.º 4
0
 public override void OnDirectoryUpdated(EntryEventArgs e)
 {
     WriteWarning(String.Format("Directory updated. Path: \"{0}\".", e.Path));
 }
Exemplo n.º 5
0
 public override void OnFileUpdated(EntryEventArgs e)
 {
     WriteWarning(String.Format("File updated. Path: \"{0}\".", e.Path));
 }
Exemplo n.º 6
0
 public virtual void OnFileVerified(EntryEventArgs e)
 {
 }
Exemplo n.º 7
0
 public virtual void OnFileUpdated(EntryEventArgs e)
 {
 }
Exemplo n.º 8
0
 public virtual void OnDirectoryUpdated(EntryEventArgs e)
 {
 }
Exemplo n.º 9
0
 public override void OnEntryDeleted(EntryEventArgs e)
 {
     WriteWarning(String.Format("Entry deleted. Path: \"{0}\".", e.Path));
 }
Exemplo n.º 10
0
 private static void RaiseEntryEvent(EntryEventHandler eventHandler, string path)
 {
     EntryEventHandler temp = eventHandler;
     if (temp != null)
     {
         EntryEventArgs eventArgs = new EntryEventArgs(path);
         temp(eventArgs);
     }
 }