Click or drag to resize

RequestContextHandlerSetProxyOnContextInitialized Method (String, String, NullableInt32)

Version 94.4.20
Sets the proxy preferences when the OnRequestContextInitialized(IRequestContext) method is called. Proxy set via the command-line usually cannot be modified.

Namespace:  CefSharp.Handler
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public RequestContextHandler SetProxyOnContextInitialized(
	string scheme,
	string host,
	int? port
)

Parameters

scheme
Type: SystemString
is the protocol of the proxy server, and is one of: 'http', 'socks', 'socks4', 'socks5'. Also note that 'socks' is equivalent to 'socks5'.
host
Type: SystemString
proxy host
port
Type: SystemNullableInt32
proxy port

Return Value

Type: RequestContextHandler
A RequestContextHandler instance allowing you to chain multiple AddPreference calls together
See Also