C# Class System.Threading.Timer

Inheritance: IDisposable
显示文件 Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Change ( System dueTime, System period ) : bool
Change ( int dueTime, int period ) : bool
Change ( long dueTime, long period ) : bool
Dispose ( System notifyObject ) : bool
Dispose ( ) : void
Timer ( System callback )
Timer ( System callback, object state, System dueTime, System period )
Timer ( System callback, object state, int dueTime, int period )
Timer ( System callback, object state, long dueTime, long period )

Private Methods

Method Description
Change ( uint dueTime, uint period ) : bool
Timer ( System callback, object state, uint dueTime, uint period )

Method Details

Change() public method

public Change ( System dueTime, System period ) : bool
dueTime System
period System
return bool

Change() public method

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

Change() public method

public Change ( long dueTime, long period ) : bool
dueTime long
period long
return bool

Dispose() public method

public Dispose ( System notifyObject ) : bool
notifyObject System
return bool

Dispose() public method

public Dispose ( ) : void
return void

Timer() public method

public Timer ( System callback )
callback System

Timer() public method

public Timer ( System callback, object state, System dueTime, System period )
callback System
state object
dueTime System
period System

Timer() public method

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

Timer() public method

public Timer ( System callback, object state, long dueTime, long period )
callback System
state object
dueTime long
period long