Files
2026-06-04 11:42:34 +02:00

13 lines
582 B
C#

using System;
namespace System.IO
{
/// <summary>Represents the method that will handle the <see cref="E:System.IO.FileSystemWatcher.Error" /> event of a <see cref="T:System.IO.FileSystemWatcher" /> object.</summary>
/// <param name="sender">The source of the event. </param>
/// <param name="e">An <see cref="T:System.IO.ErrorEventArgs" /> object that contains the event data. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x0200032A RID: 810
// (Invoke) Token: 0x06001C81 RID: 7297
public delegate void ErrorEventHandler(object sender, ErrorEventArgs e);
}