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

13 lines
583 B
C#

using System;
namespace System.IO
{
/// <summary>Represents the method that will handle the <see cref="E:System.IO.FileSystemWatcher.Renamed" /> 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.RenamedEventArgs" /> that contains the event data. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x0200032C RID: 812
// (Invoke) Token: 0x06001C89 RID: 7305
public delegate void RenamedEventHandler(object sender, RenamedEventArgs e);
}