征服者
わたしの全存在をかけてあんたを否定してあげる
- 精华
- 0
- 帖子
- 5508
- 威望
- 0 点
- 积分
- 5682 点
- 种子
- 5 点
- 注册时间
- 2005-8-13
- 最后登录
- 2015-2-3
|
发表于 2012-2-17 22:13 · 北京
|
显示全部楼层
try
{
Monitor.Enter(oAllSessions);
//MessageBox.Show(oAllSessions.Count.ToString());
foreach (Session oS in oAllSessions)
{
int len = oS.url.Length;
//if (oS.url.Substring(len - 1, 1) == "/" || oS.url.Substring(len - 3, 3) == "htm" || oS.url.Substring(len - 4, 4) == "html")
if (oS.oResponse.MIMEType == "text/html")
{
//IC_list.Items.Add(String.Format("{0} {1} {2} {3} {4}", oS.id, oS.oRequest.headers.HTTPMethod,
//Ellipsize(oS.fullUrl, 100), oS.responseCode, oS.oResponse.MIMEType));
IC_list.Items.Add(oS.id + " " + oS.fullUrl);
}
}
oAllSessions.Clear();
//MessageBox.Show(oAllSessions.Count.ToString());
}
finally
{
Monitor.Exit(oAllSessions);
} |
|