ClassReverseProxySettings
This class is used to configure the settings for the reverse proxy. It includes properties for the client port, client protocol, remote host, remote protocol, and whether to preserve the host header.
Definition
Namespace:Fiddler
Assembly:FiddlerCore.dll
Syntax:
public class ReverseProxySettings
Inheritance: objectReverseProxySettings
Inherited Members
Constructors
ReverseProxySettings()
Declaration
public ReverseProxySettings()
Properties
ClientPort
The port on which the reverse proxy will listen for incoming requests.
ClientProtocol
The protocol used by the reverse proxy to communicate with the client.
Declaration
public ReverseProxyProtocol ClientProtocol { get; set; }
Property Value
PreserveHost
Indicates whether to preserve the original host header in the forwarded request. If true, the original host header will be preserved; otherwise, it will be replaced with the remote host.
RemoteHost
The remote host to which the reverse proxy will forward requests.
RemoteProtocol
The protocol used by the reverse proxy to communicate with the remote host.
Declaration
public ReverseProxyProtocol RemoteProtocol { get; set; }
Property Value