Files
Dec2017-Script-Dump/System/IO/FileSystemEventHandler.cs
T
2026-06-04 11:42:34 +02:00

13 lines
703 B
C#

using System;
namespace System.IO
{
/// <summary>Represents the method that will handle the <see cref="E:System.IO.FileSystemWatcher.Changed" />, <see cref="E:System.IO.FileSystemWatcher.Created" />, or <see cref="E:System.IO.FileSystemWatcher.Deleted" /> event of a <see cref="T:System.IO.FileSystemWatcher" /> class.</summary>
/// <param name="sender">The source of the event. </param>
/// <param name="e">The <see cref="T:System.IO.FileSystemEventArgs" /> that contains the event data. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x0200032B RID: 811
// (Invoke) Token: 0x06001C85 RID: 7301
public delegate void FileSystemEventHandler(object sender, FileSystemEventArgs e);
}