Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TimerElapsedEventArgs.cs « Microsoft.Win32 « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a44c8eecee79bc919abcdaf40c31195f9d3eb70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// TimerElapsedEventArgs.cs
//
// Author:
//  Johannes Roith (johannes@jroith.de)
//
// (C) 2002 Johannes Roith
//
namespace Microsoft.Win32 {

	/// <summary>
	/// </summary>
public class TimerElapsedEventArgs : System.EventArgs{

	System.IntPtr mytimerId;

	
	public TimerElapsedEventArgs(System.IntPtr timerId)
	{
		this.mytimerId = timerId;
	}
	
	public System.IntPtr TimerId {

		get{
			return mytimerId;
		}
		
	}
	
}

}