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

14 lines
681 B
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that will handle the <see cref="E:System.ComponentModel.BackgroundWorker.RunWorkerCompleted" /> event of a <see cref="T:System.ComponentModel.BackgroundWorker" /> class.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="T:System.ComponentModel.RunWorkerCompletedEventArgs" /> that contains the event data.</param>
// Token: 0x02000185 RID: 389
// (Invoke) Token: 0x06000A53 RID: 2643
[Token(Token = "0x2000185")]
public delegate void RunWorkerCompletedEventHandler(object sender, RunWorkerCompletedEventArgs e);
}