FiddlerApplicationCreateProxyEndpoint Method (Int32, Boolean, X509Certificate2) |
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,
X509Certificate2 certHTTPS
)
Public Shared Function CreateProxyEndpoint (
iPort As Integer,
bAllowRemote As Boolean,
certHTTPS As X509Certificate2
) As Proxy
public:
static Proxy^ CreateProxyEndpoint(
int iPort,
bool bAllowRemote,
X509Certificate2^ certHTTPS
)
Parameters
- iPort
- Type: SystemInt32
The port to listen on - bAllowRemote
- Type: SystemBoolean
TRUE if remote clients should be permitted to connect to this endpoint - certHTTPS
- Type: System.Security.Cryptography.X509CertificatesX509Certificate2
A certificate to return when clients connect, or null
Return Value
Type:
ProxyA Proxy object, or null if unsuccessful
See Also