Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

14 lines
598 B
C#

using System;
using Cpp2IlInjected;
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: 0x0200011A RID: 282
// (Invoke) Token: 0x060006F4 RID: 1780
[Token(Token = "0x200011A")]
public delegate void DoWorkEventHandler(object sender, DoWorkEventArgs e);
}