/// <summary> /// Handles the <see cref="E:DirectoryStep" /> event. /// This function gets fired for each directory handled /// </summary> /// <param name="e">The <see cref="DirectoryStepEventArgs"/> instance containing the event data.</param> protected abstract void OnDirectoryStep( DirectoryStepEventArgs e );
/// <summary> /// Handles the <see cref="E:DirectoryStep" /> event. /// This function gets fired for each directory handled /// </summary> /// <param name="e">The <see cref="DirectoryStepEventArgs"/> instance containing the event data.</param> protected abstract void OnDirectoryStep(DirectoryStepEventArgs e);
/// <summary> /// Handles the <see cref="E:DirectoryStep" /> event. /// This function gets fired for each directory handled /// </summary> /// <param name="e">The <see cref="DirectoryStepEventArgs"/> instance containing the event data.</param> protected override void OnDirectoryStep(DirectoryStepEventArgs e) { counter++; Console.WriteLine("directory #{0} searched", counter); }