Skip to content

Instantly share code, notes, and snippets.

@ericlaw1979
Created May 9, 2018 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericlaw1979/88d2788774f8c77aeae75c040a561633 to your computer and use it in GitHub Desktop.
Save ericlaw1979/88d2788774f8c77aeae75c040a561633 to your computer and use it in GitHub Desktop.
public static void OnBoot()
{
var btn = new ToolStripButton("Boo");
btn.ToolTipText = "Haha";
FiddlerToolbar.AddToolStripItem(btn);
FiddlerApplication.OnLoadSAZ += myHandler;
}
public static void myHandler( System.Object o, Fiddler.FiddlerApplication.ReadSAZEventArgs RSEA) {
FiddlerApplication.UI.Text = "Latest: " + RSEA.sFilename;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment