1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Timers
6 {
7     public class ElapsedEventArgs : EventArgs
8     {
9         private readonly DateTime _signalTime;
10 
ElapsedEventArgs(long fileTime)11         internal ElapsedEventArgs(long fileTime)
12         {
13             _signalTime = DateTime.FromFileTime(fileTime);
14         }
15 
16         public DateTime SignalTime
17         {
18             get
19             {
20                 return _signalTime;
21             }
22         }
23     }
24 }
25 
26