Click or drag to resize

CustomProxySettingsExceptions Property

The set of URLs that should bypass the proxy settings.

Namespace:  DotNetBrowser.Net.Proxy
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public string Exceptions { get; }

Property Value

Type: String
Remarks
The format of the exceptions string can be any of the following:
  • [ URL_SCHEME "://" ] HOSTNAME_PATTERN [ ":" <port> ] Examples: "foobar.com", "*foobar.com", "*.foobar.com", "*foobar.com:99", "https://x.*.y.com:99"
  • "." HOSTNAME_SUFFIX_PATTERN [ ":" PORT ] Examples: ".google.com", ".com", "http://.google.com"
  • [ SCHEME "://" ] IP_LITERAL [ ":" PORT ] Examples: "127.0.1", "[0:0::1]", "[::1]", "http://[::1]:99"
  • IP_LITERAL "/" PREFIX_LENGHT_IN_BITS Examples: "192.168.1.1/16", "fefe:13::abc/33"
  • "<local>" Match local addresses. The meaning of "<local>" is whether the host matches one of: "127.0.0.1", "::1", "localhost".

If you need to provide several exception rules you can separate them using comma: "*foobar.com,.google.com,<local>".

See Also