Exemplo n.º 1
0
 /// <summary>
 /// Some Cobol file types can be monitored for external changes
 /// </summary>
 /// <param name="type">Type of file change detected</param>
 /// <param name="changeTime">Date and time at which the file changed occured</param>
 /// <param name="newFullPath">Only for FileMoved events (null for other events) : new full path for the Cobol file after the change occured</param>
 public CobolFileChangedEvent(CobolFileChangeType type, DateTime changeTime, string newFullPath)
 {
     Type        = type;
     ChangeTime  = changeTime;
     NewFullPath = newFullPath;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Some Cobol file types can be monitored for external changes
 /// </summary>
 /// <param name="type">Type of file change detected</param>
 /// <param name="changeTime">Date and time at which the file changed occured</param>
 /// <param name="newFullPath">Only for FileMoved events (null for other events) : new full path for the Cobol file after the change occured</param> 
 public CobolFileChangedEvent(CobolFileChangeType type, DateTime changeTime, string newFullPath)
 {
     Type = type;
     ChangeTime = changeTime;
     NewFullPath = newFullPath;
 }