本文整理汇总了VB.NET中System.Timers.ElapsedEventHandler代理的典型用法代码示例。如果您正苦于以下问题:VB.NET ElapsedEventHandler代理的具体用法?VB.NET ElapsedEventHandler怎么用?VB.NET ElapsedEventHandler使用的例子?那么恭喜您, 这里精选的代理代码示例或许可以为您提供帮助。
在下文中一共展示了ElapsedEventHandler代理的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: Main
' Use this code inside a project created with the Visual Basic > Windows Desktop > Console Application template.
' Replace the default code in Module1.vb with this code. Then right click the project in Solution Explorer,
' select Properties, and set the Startup Object to Timer1.
' To avoid confusion with other Timer classes, this sample always uses the fully-qualified
' name of System.Timers.Timer.
Public Class Module1
Private Shared aTimer As System.Timers.Timer
Public Shared Sub Main()
' Normally, the timer is declared at the class level, so that it stays in scope as long as it
' is needed. If the timer is declared in a long-running method, KeepAlive must be used to prevent
' the JIT compiler from allowing aggressive garbage collection to occur before the method ends.
' You can experiment with this by commenting out the class-level declaration and uncommenting
' the declaration below; then uncomment the GC.KeepAlive(aTimer) at the end of the method.
'Dim aTimer As System.Timers.Timer
' Create a timer and set a two second interval.
aTimer = New System.Timers.Timer()
aTimer.Interval = 2000
' Alternate method: create a Timer with an interval argument to the constructor.
' aTimer = New System.Timers.Timer(2000)
' Hook up the Elapsed event for the timer.
AddHandler aTimer.Elapsed, AddressOf OnTimedEvent
' Have the timer fire repeated events (true is the default)
aTimer.AutoReset = True
' Start the timer
aTimer.Enabled = True
Console.WriteLine("Press the Enter key to exit the program at any time... ")
Console.ReadLine()
' If the timer is declared in a long-running method, use KeepAlive to prevent garbage collection
' from occurring before the method ends.
'GC.KeepAlive(aTimer)
End Sub
Private Shared Sub OnTimedEvent(source As Object, e As System.Timers.ElapsedEventArgs)
Console.WriteLine("The Elapsed event was raised at {0}", e.SignalTime)
End Sub
End Class
' This example displays output like the following:
' Press the Enter key to exit the program at any time...
' The Elapsed event was raised at 5/20/2015 8:48:58 PM
' The Elapsed event was raised at 5/20/2015 8:49:00 PM
' The Elapsed event was raised at 5/20/2015 8:49:02 PM
' The Elapsed event was raised at 5/20/2015 8:49:04 PM
' The Elapsed event was raised at 5/20/2015 8:49:06 PM
开发者ID:VB.NET开发者,项目名称:System.Timers,代码行数:55,代码来源:ElapsedEventHandler
注:本文中的System.Timers.ElapsedEventHandler代理示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论