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

12 lines
549 B
C#

using System;
namespace System.ComponentModel
{
/// <summary>Represents the method that will handle the <see cref="E:System.ComponentModel.BackgroundWorker.DoWork" /> event. This class cannot be inherited.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.DoWorkEventArgs" /> that contains the event data.</param>
// Token: 0x02000323 RID: 803
// (Invoke) Token: 0x06001C65 RID: 7269
public delegate void DoWorkEventHandler(object sender, DoWorkEventArgs e);
}