InterfaceIFiddlerCoreStartupSettingsBuilder<T, P>
A generic builder interface for FiddlerCoreStartupSettings.
Definition
Namespace:Fiddler
Assembly:FiddlerCore.dll
Type Parameters:
T
IFiddlerCoreStartupSettingsBuilder<T, P>P
FiddlerCoreStartupSettingsSyntax:
public interface IFiddlerCoreStartupSettingsBuilder<out T, out P> where T : IFiddlerCoreStartupSettingsBuilder<out T, out P> where P : FiddlerCoreStartupSettings
Methods
AllowRemoteClients()
Accepts requests from remote computers or devices. WARNING: Security Impact
Declaration
T AllowRemoteClients()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>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.
CaptureLocalhostTraffic()
Passes the <-loopback> token to the proxy exception list.
Declaration
[Obsolete("Use the Telerik.NetworkConnections.NetworkConnectionsManager to register the FiddlerCore Proxy as proxy for each required connection and set the BypassHosts accordingly.")]
T CaptureLocalhostTraffic()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>ChainToUpstreamGateway()
Forwards requests to any upstream gateway.
Declaration
[Obsolete("Please, use the SetUpstreamProxySettingsTo method to provide the upstream proxy for FiddlerCore.")]
T ChainToUpstreamGateway()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>DecryptSSL()
Decrypts HTTPS Traffic.
HookUsingPACFile()
Sets connections to use a self-generated PAC File.
Declaration
T HookUsingPACFile()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>ListenOnPort(ushort)
The port on which the FiddlerCore app will listen on. If 0, a random port will be used.
Declaration
T ListenOnPort(ushort port)
Parameters
port
The port on which the FiddlerCore app should listen on.
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>MonitorAllConnections()
Sets all connections to use FiddlerCore, otherwise only the Local LAN is pointed to FiddlerCore.
Declaration
T MonitorAllConnections()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>RegisterAsSystemProxy()
Registers as the system proxy.
Declaration
T RegisterAsSystemProxy()
Returns
T
IFiddlerCoreStartupSettingsBuilder<T, P>SetUpstreamProxySettingsTo(ProxySettings)
Sets the proxy settings which FiddlerCore uses to find the upstream proxy.
Declaration
T SetUpstreamProxySettingsTo(ProxySettings proxySettings)
Parameters
proxySettings
ProxySettingsReturns
T
IFiddlerCoreStartupSettingsBuilder<T, P>