异步发送
Posted vinsonLu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异步发送相关的知识,希望对你有一定的参考价值。
/// <summary> /// 发送 改成异步发送了 /// </summary> /// <param name="userList"></param> /// <param name="message"></param> /// <param name="title"></param> /// <param name="notifyenum"></param> private static void Notify(NotifyContext noticontext, List<IssuedType> notifyenum) { Task.Factory.StartNew(() => { try { notifyenum.ForEach(p => { BaseNotifier noti = null; #region 实例 //邮件 if (p == IssuedType.Mail) { noti = new MailNotifier(); } //App if (p == IssuedType.App) { noti = new AppNotifier(); } //短信 if (p == IssuedType.SMS) { noti = new SMSNotifier(); } #endregion #region 赋值发送 if (noti != null) { noti.Context = noticontext; noti.Notify(); } #endregion }); } catch (Exception ex) { Dao.Get().ExecuteNonQuery("insert into vinson_msg(msg) values(‘" + ex.Message + "‘)"); } }); }
以上是关于异步发送的主要内容,如果未能解决你的问题,请参考以下文章