13 lines
577 B
C#
13 lines
577 B
C#
using System;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.Console.CancelKeyPress" /> event of a <see cref="T:System.Console" />.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.ConsoleCancelEventArgs" /> object that contains the event data. </param>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006E8 RID: 1768
|
|
// (Invoke) Token: 0x06004228 RID: 16936
|
|
public delegate void ConsoleCancelEventHandler(object sender, ConsoleCancelEventArgs e);
|
|
}
|