Table of Contents

Class TimerReference

Namespace
SampSharp.Entities
Assembly
SampSharp.OpenMp.Entities.dll

Represents a reference to an interval or timeout.

public class TimerReference
Inheritance
TimerReference
Inherited Members

Properties

IsActive

Gets a value indicating whether the timer is active.

public bool IsActive { get; }

Property Value

bool

Method

Gets the method to be invoked with this timer.

public MethodInfo? Method { get; }

Property Value

MethodInfo

NextTick

Gets the time span until the next tick of this timer.

public TimeSpan NextTick { get; }

Property Value

TimeSpan

Target

Gets the target on which the timer is invoked.

public object? Target { get; }

Property Value

object