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