Files
2026-04-10 22:50:51 +02:00

14 lines
596 B
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the method that will handle the MethodName<see langword="Completed" /> event of an asynchronous operation.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> that contains the event data.</param>
// Token: 0x020000E3 RID: 227
// (Invoke) Token: 0x06000551 RID: 1361
[Token(Token = "0x20000E3")]
public delegate void AsyncCompletedEventHandler(object sender, AsyncCompletedEventArgs e);
}