代码: using NLog; using System; using System.Diagnostics; using System.IO; using System.Net; using System.ServiceProcess; using System.Text; using System.Threading; using System.Web; using System.Xml; namespace MasterCardService { public partial class…
通过winform或者是控制台应用程序监听http请求,之前使用的是微软的HttpListener,参考https://www.cnblogs.com/duanjt/p/5566336.html 然后这篇文章是介绍Nancy.net的使用方式.具体如下: 首先nuget引用: Install-Package NancyInstall-Package Nancy.Hosting.Self 然后就是创建一个类继承于Nancy.NancyModule: public class SampleModul…