RequestContextExtensions.SetProxyAsync Method (IRequestContext, String, String, Nullable<Int32>) |
Version 104.4.240
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxpublic static Task<SetProxyResponse> SetProxyAsync(
this IRequestContext requestContext,
string scheme,
string host,
int? port
)
public:
[ExtensionAttribute]
static Task<SetProxyResponse^>^ SetProxyAsync(
IRequestContext^ requestContext,
String^ scheme,
String^ host,
Nullable<int> port
)
Parameters
- requestContext
- Type: CefSharp.IRequestContext
request context - scheme
- Type: System.String
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: System.String
proxy host - port
- Type: System.Nullable<Int32>
proxy port
Return Value
Type:
Task<SetProxyResponse>returns
Success 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).
RemarksInternally calls with
preference 'proxy' and mode of 'fixed_servers'
See Also