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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs')
-rw-r--r--mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs b/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs
new file mode 100644
index 00000000000..a44c8eecee7
--- /dev/null
+++ b/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs
@@ -0,0 +1,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;
+ }
+
+ }
+
+}
+
+}