需要计时器在C#10秒后运行

时间:2013-03-05 14:44:19

标签: c#

我正在使用套接字编程,我可以在一些时间间隔(例如10秒)后检查用户的实时连接。但是目前,我不知道。我将如何做到。

请帮帮我。我将非常感激。

3 个答案:

答案 0 :(得分:2)

包括:using System.Threading;

我不知道你在做什么(有代码向我们展示?),但这是一般逻辑:

while (/*connection is active*/)
{
 //check connection
 Thread.Sleep(10000); //10 seconds
}

答案 1 :(得分:2)

来自MSDN Timer Class (System Timers)

以下是MSDN页面的示例

[C#] 
public class Timer1
{
    public static void Main()
    {
        System.Timers.Timer aTimer = new System.Timers.Timer();
        aTimer.Elapsed+=new ElapsedEventHandler(OnTimedEvent);
        // Set the Interval to 10 seconds.
        aTimer.Interval=10000;
        aTimer.Enabled=true;

        Console.WriteLine("Press \'q\' to quit the sample.");
        while(Console.Read()!='q');
    }

    // Specify what you want to happen when the Elapsed event is raised.
    private static void OnTimedEvent(object source, ElapsedEventArgs e)
    {
        Console.WriteLine("Hello World!");
    }
}

答案 2 :(得分:1)

这实际上取决于你在做什么,以及你如何检查连接。

你可以使用Threading.sleep();一个计时器,或取决于你做什么,你可以使用基于连接/断开连接的事件处理程序...