Refresh . In modern versions of Fiddler, you can simply right-click the column headers, select Customize Columns, and add the Miscellaneous > Request Size column.
Depending on your needs, this may not be exactly what you want to do, as it only displays the length of the request body and does not include the size of the headers.
Here's an improved version:
public static BindUIColumn("Req-Size") function CalcReqSize(oS: Session){ if (null == oS.oRequest) return String.Empty; var cBytesOut: int = 0; if (null != oS.requestBodyBytes) cBytesOut += oS.requestBodyBytes.LongLength; if ((null != oS.oRequest) && (null != oS.oRequest.headers)) cBytesOut += oS.oRequest.headers.ByteCount() ; return cBytesOut.ToString(); }
EricLaw
source share