Fiddler Add to intercept see the response time

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/yin13753884368/article/details/84347241

Fiddler Add to intercept see the response time

Open add the following code inside the class Handlers {

 function BeginRequestTime(oS:Session) {
        if (oS.Timers != null) {
            return oS.Timers.ClientBeginRequest.ToString();
        }
        return String.Empty;
    }


    public static BindUIColumn("Time Taken")

    function CalcTimingCol(oS:Session) {
        var sResult = String.Empty;
        if ((oS.Timers.ServerDoneResponse > oS.Timers.ClientDoneRequest)) {
            sResult = (oS.Timers.ServerDoneResponse - oS.Timers.ClientDoneRequest).ToString();
        }
        return sResult;
    }

Then, exit fiddler, restart to take effect

Guess you like

Origin blog.csdn.net/yin13753884368/article/details/84347241