最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

asp.net 截取Http請求的實(shí)現(xiàn)代碼

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:43:15
文檔

asp.net 截取Http請求的實(shí)現(xiàn)代碼

asp.net 截取Http請求的實(shí)現(xiàn)代碼:1:前言 本篇文章比較短,主要是因為我的一個隨想產(chǎn)生的一段代碼。 這段代碼的功能你可以叫做是簡單的Http服務(wù)器也可以叫做Http請求截取。它實(shí)現(xiàn)的功能就是截取Http請求然后自己做處理。 2:代碼 代碼如下:public class HttpServer : IDisp
推薦度:
導(dǎo)讀asp.net 截取Http請求的實(shí)現(xiàn)代碼:1:前言 本篇文章比較短,主要是因為我的一個隨想產(chǎn)生的一段代碼。 這段代碼的功能你可以叫做是簡單的Http服務(wù)器也可以叫做Http請求截取。它實(shí)現(xiàn)的功能就是截取Http請求然后自己做處理。 2:代碼 代碼如下:public class HttpServer : IDisp

1:前言
本篇文章比較短,主要是因為我的一個隨想產(chǎn)生的一段代碼。 這段代碼的功能你可以叫做是簡單的Http服務(wù)器也可以叫做Http請求截取。它實(shí)現(xiàn)的功能就是截取Http請求然后自己做處理。
2:代碼
代碼如下:

public class HttpServer : IDisposable
{
private HttpListener listener;
public void Start()
{
listener = new HttpListener();
listener.Prefixes.Add("http://localhost/");
listener.AuthenticationSchemes = AuthenticationSchemes.IntegratedWindowsAuthentication | AuthenticationSchemes.Anonymous;
listener.Start();
listener.BeginGetContext(GetContext, null);
}
private void GetContext(IAsyncResult ar)
{
HttpListenerRequest Request;
HttpListenerResponse Response;
try
{
HttpListenerContext ctx = listener.EndGetContext(ar);
Request = ctx.Request;
Response = ctx.Response;
//setup waiting for the next request
listener.BeginGetContext(GetContext, null);
}
catch (InvalidOperationException)
{
return;
}
catch (HttpListenerException)
{
return;
}
try
{
var sw = new StreamWriter(Response.OutputStream);
sw.Write(@"<html><body><p>你的請求已經(jīng)被截取</p></body></html>");
sw.Flush();
}
finally
{
Response.OutputStream.Flush();
Response.Close();
}
}
public void Dispose()
{
if (listener != null)
listener.Stop();
}
}

3:簡單解釋一下
代碼的核心就是HttpListener,通過它去偵聽一個端口,當(dāng)有請求的時候BeginGetContext交給GetContext方法進(jìn)行異步處理,在這個方法的內(nèi)部首先實(shí)現(xiàn)的就是重新監(jiān)聽。然后進(jìn)行自己的處理。
呵呵,這段代碼有什么其他用處待考慮。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

asp.net 截取Http請求的實(shí)現(xiàn)代碼

asp.net 截取Http請求的實(shí)現(xiàn)代碼:1:前言 本篇文章比較短,主要是因為我的一個隨想產(chǎn)生的一段代碼。 這段代碼的功能你可以叫做是簡單的Http服務(wù)器也可以叫做Http請求截取。它實(shí)現(xiàn)的功能就是截取Http請求然后自己做處理。 2:代碼 代碼如下:public class HttpServer : IDisp
推薦度:
標(biāo)簽: 獲取 請求 實(shí)現(xiàn)
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top