/// <summary> /// Raises the directory event. /// </summary> /// <param name="directory"><see cref="DirectoryInfo"/> object for the current path.</param> /// <param name="action">The <see cref="ScanDirectoryAction"/> action value.</param> /// <returns><see langword="true"/> when the scan is allowed to continue. <see langword="false"/> if otherwise;</returns> private bool RaiseDirectoryEvent(DirectoryInfo directory, ScanDirectoryAction action) { bool continueScan = true; // Only do something when the event has been declared. if (FileEvent != null) { // Create a new argument object for the file event. DirectoryEventArgs args = new DirectoryEventArgs(directory, action); // Now raise the event. DirectoryEvent(this, args); continueScan = !args.Cancel; } return(continueScan); }
/// <summary> /// Raises the directory event. /// </summary> /// <param name="directory"><see cref="DirectoryInfo"/> object for the current path.</param> /// <param name="action">The <see cref="ScanDirectoryAction"/> action value.</param> /// <returns><see langword="true"/> when the scan is allowed to continue. <see langword="false"/> if otherwise;</returns> private bool RaiseDirectoryEvent(DirectoryInfo directory, ScanDirectoryAction action) { bool continueScan = true; // Only do something when the event has been declared. if (FileEvent != null) { // Create a new argument object for the file event. DirectoryEventArgs args = new DirectoryEventArgs(directory, action); // Now raise the event. DirectoryEvent(this, args); continueScan = !args.Cancel; } return continueScan; }