jiehuuu
Results
1
issues of
jiehuuu
I'm trying to block images, however, it doesn't work I am using **BeforeResponse** event Tried this: ``` if (e.HttpClient.Response.ContentType.Contains("image")) { e.SetResponseBodyString(""); } ``` and this ``` if (e.HttpClient.Response.ContentType.Contains("image")) { byte[]...