titanium-web-proxy
titanium-web-proxy copied to clipboard
When SetResponseBodyString await e.GetResponseBodyAsString() will takes more than 120s
private async Task ProxyServer_BeforeResponse(object sender, SessionEventArgs e)
{
//long string is 1kb
e.SetResponseBodyString("long string")
//It takes more than 120s
await e.GetResponseBodyAsString();
}
When SetResponseBodyString await e.GetResponseBodyAsString() will takes more than 120s