FiddlerApplicationCreateProxyEndpoint Method (Int32, Boolean, String) |
Start a new proxy endpoint instance, listening on the specified port
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static Proxy CreateProxyEndpoint(
int iPort,
bool bAllowRemote,
string sHTTPSHostname
)
Public Shared Function CreateProxyEndpoint (
iPort As Integer,
bAllowRemote As Boolean,
sHTTPSHostname As String
) As Proxy
public:
static Proxy^ CreateProxyEndpoint(
int iPort,
bool bAllowRemote,
String^ sHTTPSHostname
)
Parameters
- iPort
- Type: SystemInt32
The port to listen on - bAllowRemote
- Type: SystemBoolean
TRUE if remote clients should be permitted to connect to this endpoint - sHTTPSHostname
- Type: SystemString
A Hostname (e.g. EXAMPLE.com) if this endpoint should be treated as a HTTPS Server
Return Value
Type:
ProxyA Proxy object, or null if unsuccessful
See Also