WCF 删除队列_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WCF 删除队列

WCF 删除队列

 2014/10/29 12:42:03  黎木  程序员俱乐部  我要评论(0)
  • 摘要:Configurationconfig=ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);ServiceModelSectionGroupgroup=ServiceModelSectionGroup.GetSectionGroup(config);foreach(ChannelEndpointElementendPointingroup.Client.Endpoints){if(endPoint
  • 标签:
Configuration config = ConfigurationManager.OpenExeConfiguration
                (ConfigurationUserLevel.None);
            ServiceModelSectionGroup  group=ServiceModelSectionGroup.GetSectionGroup(config);
            foreach(ChannelEndpointElement endPoint in group.Client.Endpoints )
            {
                if (endPoint.Binding == "netMsmqBinding")
                {
                    string queuename = GetQueueFromUri(endPoint.Address);
                    if (MessageQueue.Exists(queuename) == false)
                    {
                        MessageQueue queue = new MessageQueue(queuename);
                        queue.Purge();
                    }
                }
            }

image

  • 相关文章
发表评论
用户名: 匿名