sorry ,i am chinese.English is very poor .
i see fiddler web debug have a function named "HOSTS",it in catalog "tools->HOSTS",
now i use fiddlercore,but i donot find the HOSTS function .
i found a class named HostList,but I don't know how to use it.
i want modify request host's ip address.
for example :
private void onBeforeRequest(Fiddler.Session oSession)
{
//now oSession.host = "5158.s20.javaidc.com";ip is 118.26.135.190,i want modiyf to 127.0.0.1 ,but the request head remain the same
// under code is not working, I don't know whether or not write code in beforeRequest or other place
oSession.m_hostIP = "127.0.0.1";
//under code is modefiy request head
//oSession.host = "127.0.0.1";
}
thank you make the fiddler software. Help me to solve a lot of trouble.