scripts
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
|
||||
namespace System.Timers
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.Timers.Timer.Elapsed" /> event.</summary>
|
||||
// Token: 0x020002EE RID: 750
|
||||
public class ElapsedEventArgs : EventArgs
|
||||
{
|
||||
// Token: 0x06001B35 RID: 6965 RVA: 0x00063DDC File Offset: 0x00061FDC
|
||||
internal ElapsedEventArgs(DateTime time)
|
||||
{
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
/// <summary>Gets the time the <see cref="E:System.Timers.Timer.Elapsed" /> event was raised.</summary>
|
||||
/// <returns>The time the <see cref="E:System.Timers.Timer.Elapsed" /> event was raised.</returns>
|
||||
// Token: 0x1700084B RID: 2123
|
||||
// (get) Token: 0x06001B36 RID: 6966 RVA: 0x00063DEC File Offset: 0x00061FEC
|
||||
public DateTime SignalTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.time;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040015D2 RID: 5586
|
||||
private DateTime time;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user