C# Class Mapsui.Utilities.Timer

Taken from: http://stackoverflow.com/questions/22619896/problems-with-system-threading-timer-in-pcl-profile-78-warnings Thank you Daniel Henry
Inheritance: IDisposable
Show file Open project: pauldendulk/Mapsui Class Usage Examples

Public Methods

Method Description
Change ( System.TimeSpan dueTime, System.TimeSpan period ) : void
Change ( int dueTime, int period ) : void
Dispose ( ) : void
Timer ( TimerCallback callback, object state, System.TimeSpan dueTime, System.TimeSpan period ) : System
Timer ( TimerCallback callback, object state, int dueTime, int period ) : System

Private Methods

Method Description
Cancel ( ) : void
Dispose ( bool cleanUpManagedObjects ) : void
Reset ( int due ) : void

Method Details

Change() public method

public Change ( System.TimeSpan dueTime, System.TimeSpan period ) : void
dueTime System.TimeSpan
period System.TimeSpan
return void

Change() public method

public Change ( int dueTime, int period ) : void
dueTime int
period int
return void

Dispose() public method

public Dispose ( ) : void
return void

Timer() public method

public Timer ( TimerCallback callback, object state, System.TimeSpan dueTime, System.TimeSpan period ) : System
callback TimerCallback
state object
dueTime System.TimeSpan
period System.TimeSpan
return System

Timer() public method

public Timer ( TimerCallback callback, object state, int dueTime, int period ) : System
callback TimerCallback
state object
dueTime int
period int
return System