Share via


TimerCallback Delegate

Represents the method that handles calls from Timer objects.

Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)

Syntax

public delegate void TimerCallback (
         Object state
)

Parameters

  • state
    An object that contains application-specific information relevant to the method invoked by this delegate, or a null reference.

Remarks

The declaration of your callback method must have the same parameters as the TimerCallback delegate declaration.

Version Information

Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, 4.1, and 4.2.

See Also

Reference

System.Threading Namespace