码迷,mamicode.com
首页 > Windows程序 > 详细

C# 指定方法的超时时间,超出时限后,直接抛出异常

时间:2015-11-13 13:09:26      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:

        public static void Invoke(Action method, int milliseconds)
        {
            Thread thdToKill = null;

            Action invokemethod = new Action(() =>
            {
                thdToKill = Thread.CurrentThread;
                method();
            });

            IAsyncResult ar = invokemethod.BeginInvoke(null, null);
            if (!ar.AsyncWaitHandle.WaitOne(milliseconds))
            {
                thdToKill.Abort();
                throw new Exception(string.Format("操作失败,原因:超时 {0}毫秒", milliseconds));
            }

            invokemethod.EndInvoke(ar);
        }

 

C# 指定方法的超时时间,超出时限后,直接抛出异常

标签:

原文地址:http://www.cnblogs.com/xyz0835/p/4961740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!