Interface IFiddlerCoreStartupSettingsBuilder<T, P>
A generic builder interface for Fiddler
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface IFiddlerCoreStartupSettingsBuilder<out T, out P>
where T : IFiddlerCoreStartupSettingsBuilder<T, P> where P : FiddlerCoreStartupSettings
Type Parameters
Methods
AllowRemoteClients()
Accepts requests from remote computers or devices. WARNING: Security Impact
Declaration
T AllowRemoteClients()
Returns
Remarks
Use caution when allowing Remote Clients to connect. If a hostile computer is able to proxy its traffic through your FiddlerCore instance, he could circumvent IPSec traffic rules, circumvent intranet firewalls, consume memory on your PC, etc.
Build()
Builds the FiddlerCoreStartupSettings instance.
Declaration
P Build()
Returns
P
The instance of FiddlerCoreStartupSettings. |
CaptureFTP()
Registers FiddlerCore as the FTP proxy.
Declaration
T CaptureFTP()
Returns
CaptureLocalhostTraffic()
Passes the <-loopback> token to the proxy exception list.
Declaration
T CaptureLocalhostTraffic()
Returns
ChainToUpstreamGateway()
Forwards requests to any upstream gateway.
Declaration
T ChainToUpstreamGateway()
Returns
DecryptSSL()
Decrypts HTTPS Traffic.
Declaration
T DecryptSSL()
Returns
HookUsingPACFile()
Sets connections to use a self-generated PAC File.
Declaration
T HookUsingPACFile()
Returns
ListenOnPort(UInt16)
The port on which the FiddlerCore app will listen on. If 0, a random port will be used.
Declaration
T ListenOnPort(ushort port)
Parameters
System. The port on which the FiddlerCore app should listen on. |
Returns
MonitorAllConnections()
Sets all connections to use FiddlerCore, otherwise only the Local LAN is pointed to FiddlerCore.
Declaration
T MonitorAllConnections()
Returns
RegisterAsSystemProxy()
Registers as the system proxy.
Declaration
T RegisterAsSystemProxy()
Returns
SetUpstreamProxySettingsTo(ProxySettings)
Sets the proxy settings which FiddlerCore uses to find the upstream proxy.
Declaration
T SetUpstreamProxySettingsTo(ProxySettings proxySettings)
Parameters
Proxy |