Events
Mar 17, 9 PM - Mar 21, 10 AM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register nowThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Clears the proxy bypass list.
<configuration>
<system.net>
<defaultProxy>
<bypasslist>
<clear>
<clear/>
The following sections describe attributes, child elements, and parent elements.
None.
None.
Element | Description |
---|---|
bypasslist | Provides a set of regular expressions that describe addresses that do not use a proxy. |
The clear
element clears all entries from the bypass list.
This element can be used in the application configuration file or the machine configuration file (Machine.config).
The following example clears the bypass list and then adds two addresses to the bypass list. The first bypasses the proxy for all servers in the contoso.com domain; the second bypasses the proxy for all servers whose IP address begins with 192.168.
<configuration>
<system.net>
<defaultProxy>
<bypasslist>
<clear/>
<add address="[a-z]+\.contoso\.com$" />
<add address="192\.168\.\d{1,3}\.\d{1,3}" />
</bypasslist>
</defaultProxy>
</system.net>
</configuration>
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Events
Mar 17, 9 PM - Mar 21, 10 AM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register now