14 lines
596 B
C#
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: 0x020000DF RID: 223
|
|
// (Invoke) Token: 0x0600053B RID: 1339
|
|
[Token(Token = "0x20000DF")]
|
|
public delegate void AsyncCompletedEventHandler(object sender, AsyncCompletedEventArgs e);
|
|
}
|