14 lines
531 B
C#
14 lines
531 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Represents the method that handles calls from a <see cref="T:System.Threading.Timer" />.</summary>
|
|
/// <param name="state">An object containing application-specific information relevant to the method invoked by this delegate, or null. </param>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006E1 RID: 1761
|
|
// (Invoke) Token: 0x0600420C RID: 16908
|
|
[ComVisible(true)]
|
|
public delegate void TimerCallback(object state);
|
|
}
|