Found these instructions on the fiddler wiki for adding session variables:
cols add "Client IP Address" X-CLIENTIP
But HTTPMethod doesn't seem to be as easy.
Anybody know a way to do this or have a good fiddler script?
Edit your rules, then in the class Handlers add:
public static BindUIColumn("Method", 60)
function FillMethodColumn(oS: Session){
return oS.oRequest.headers.HTTPMethod;
}