111,094
社区成员




static void FiddlerApplication_BeforeResponse(Session oSession)
{
if (oSession.fullUrl.StartsWith("http://www.baidu.com"))
{
oSession.utilDecodeResponse();
oSession.utilSetResponseBody("test");
}
}