14 lines
508 B
C#
14 lines
508 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Represents the method that handles a cancelable event.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x020000F4 RID: 244
|
|
// (Invoke) Token: 0x060005F7 RID: 1527
|
|
[Token(Token = "0x20000F4")]
|
|
public delegate void CancelEventHandler(object sender, CancelEventArgs e);
|
|
}
|