异步http listener 完全并发处理惩罚http恳求的小例子_C语言教程-查字典教程网
异步http listener 完全并发处理惩罚http恳求的小例子
异步http listener 完全并发处理惩罚http恳求的小例子
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;...

复制代码 代码如下:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Net;

using System.Net.Sockets;

using DevSDK.Net.Sockets;

using System.IO;

namespace ConsoleApplication1

{

class Program

{

static HttpListener sSocket = null;

static void Main(string[] args)

{

sSocket = new HttpListener();

sSocket.Prefixes.Add("http://127.0.0.1:8080/");

sSocket.Start();

sSocket.BeginGetContext(new AsyncCallback(GetContextCallBack), sSocket);

Console.Read();

}

static void GetContextCallBack(IAsyncResult ar)

{

try

{

sSocket = ar.AsyncState as HttpListener;

HttpListenerContext context = sSocket.EndGetContext(ar);

sSocket.BeginGetContext(new AsyncCallback(GetContextCallBack), sSocket);

Console.WriteLine(context.Request.Url.PathAndQuery);

}

catch { }

}

}

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新C语言学习
    热门C语言学习
    编程开发子分类