RequestContextExtensionsSetProxy Method (IRequestContext, String, String, NullableInt32, String) |
Version 98.1.210
Sets the proxy server for the specified
IRequestContext
MUST be called on the CEF UI Thread
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 98.1.210.0 (98.1.210.0)
Syntax public static bool SetProxy(
this IRequestContext requestContext,
string scheme,
string host,
int? port,
out string errorMessage
)
public:
[ExtensionAttribute]
static bool SetProxy(
IRequestContext^ requestContext,
String^ scheme,
String^ host,
Nullable<int> port,
[OutAttribute] String^% errorMessage
)
Parameters
- requestContext
- Type: CefSharpIRequestContext
request context - 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 - errorMessage
- Type: SystemString
error message
Return Value
Type:
Booleanreturns true if successfull, false otherwise.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IRequestContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks Internally calls with
preference 'proxy' and mode of 'fixed_servers'
See Also