• 大小: 1.25M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签:

资源简介

   通过C# 调用MSMQ 微软消息队列

资源截图

代码片段和文件信息

using System;
using System.Diagnostics;
using System.Messaging;
using System.Collections.Generic;



namespace MsmsInfo
{
    class SendTools
    {
        public void SendDemo()
        {

            MessageQueue queue = new MessageQueue(“jimmyibm\\private$\\msg“);

            Stopwatch stopWatch = new Stopwatch();

            stopWatch.Start();

            const int MAX_NUMBER = 5000;

            for (int i = 1; i <= MAX_NUMBER; i++)
            {
                Message msg = new Message();
                //这里随便设点儿测试值
                msg.Label = i.ToString();
                msg.Body = i.ToString().PadLeft(8 ‘0‘);
                //msg.Recoverable = true;//设置消息可恢复(即服务器重启后,消息还在,但是启用这个选项将会使发送时间加倍,因为“可恢复“的机制就是先在服务器硬盘生成文本文件,多了一次写文件的IO操作)
                q

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-06-04 10:36  MSMQ\.vs\
     目录           0  2018-06-04 10:36  MSMQ\.vs\MsmsInfo\
     目录           0  2018-06-04 10:36  MSMQ\.vs\MsmsInfo\v14\
     文件       48640  2018-06-13 09:46  MSMQ\.vs\MsmsInfo\v14\.suo
     文件      170437  2017-08-01 13:19  MSMQ\MsmsInfo.7z
     文件        1687  2018-06-04 10:59  MSMQ\MsmsInfo.sln
     文件       49152  2018-06-02 17:31  MSMQ\MsmsInfo.suo
     目录           0  2018-06-12 10:25  MSMQ\MsmsInfo\
     文件        3711  2018-06-12 10:30  MSMQ\MsmsInfo\app.config
     目录           0  2018-06-04 10:58  MSMQ\MsmsInfo\bin\
     目录           0  2018-06-04 10:58  MSMQ\MsmsInfo\bin\ddd\
     文件        3738  2018-06-04 10:57  MSMQ\MsmsInfo\bin\ddd\MsmsInfo.exe.config
     文件       22696  2018-06-04 10:58  MSMQ\MsmsInfo\bin\ddd\MsmsInfo.vshost.exe
     文件        3738  2018-06-04 10:57  MSMQ\MsmsInfo\bin\ddd\MsmsInfo.vshost.exe.config
     目录           0  2018-06-04 10:28  MSMQ\MsmsInfo\bin\Debug\
     文件      249856  2014-02-14 12:01  MSMQ\MsmsInfo\bin\Debug\log4net.dll
     目录           0  2018-06-07 16:17  MSMQ\MsmsInfo\bin\Debug\Logs\
     文件        3097  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\Logs\MsmsInfo.log
     文件         680  2018-06-04 17:32  MSMQ\MsmsInfo\bin\Debug\Logs\MsmsInfoAppender.logNotificationServer_20180604.log
     文件         816  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\Logs\MsmsInfoAppender.logNotificationServer_20180607.log
     文件         816  2017-07-31 10:15  MSMQ\MsmsInfo\bin\Debug\Logs\NotificationServer_20170731.log
     文件         680  2018-06-04 17:32  MSMQ\MsmsInfo\bin\Debug\Logs\NotificationServer_20180604.log
     文件         816  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\Logs\NotificationServer_20180607.log
     文件         446  2017-07-31 10:15  MSMQ\MsmsInfo\bin\Debug\Logs\Protocol-NS.log
     文件       28672  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\MsmsInfo.exe
     文件        3738  2018-06-04 10:57  MSMQ\MsmsInfo\bin\Debug\MsmsInfo.exe.config
     文件       62976  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\MsmsInfo.pdb
     文件       22696  2018-06-07 16:29  MSMQ\MsmsInfo\bin\Debug\MsmsInfo.vshost.exe
     文件        3738  2018-06-04 10:57  MSMQ\MsmsInfo\bin\Debug\MsmsInfo.vshost.exe.config
     目录           0  2018-06-12 10:30  MSMQ\MsmsInfo\bin\Release\
     文件      249856  2014-02-14 12:01  MSMQ\MsmsInfo\bin\Release\log4net.dll
............此处省略112个文件信息

评论

共有 条评论