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