Overview#

This is just an overview of Persistence With “Fiddler Classic” Extensions

Example#

using System.Diagnostics;
using Fiddler;
 
[assembly: Fiddler.RequiredVersion("2.3.5.0")]
 
namespace POCFiddlerDotNet
{
    public class PersistencePOC : IFiddlerExtension
    {
        public PersistencePOC() { }
 
        public void OnLoad()
        {
            Process.Start("calc", "");
        }
 
        public void OnBeforeUnload()
        {
            //
        }
    }
}

Related Articles

Other threads in the archive worth reading next.