Skip to content

Commit 0a0e178

Browse files
authored
Fix enum value casing (#18777)
* Fix enum value casing * Fix enum value casing * Fix enum value casing * Fix enum value casing
1 parent 89c43d8 commit 0a0e178

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

docs/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Configures the Hypertext Transfer Protocol (HTTP) proxy server.
2121

2222
```xml
2323
<defaultProxy
24-
enabled="true|false"
25-
useDefaultCredentials="true|false">
24+
enabled="True|False"
25+
useDefaultCredentials="True|False">
2626
<bypasslist>...</bypasslist>
2727
<proxy>...</proxy>
2828
<module>...</module>
@@ -36,8 +36,8 @@ Configures the Hypertext Transfer Protocol (HTTP) proxy server.
3636

3737
|**Element**|**Description**|
3838
|-----------------|---------------------|
39-
|`enabled`|Specifies whether a web proxy is used. The default value is `true`.|
40-
|`useDefaultCredentials`|Specifies whether the default credentials for this host are used to access the web proxy. The default value is `false`.|
39+
|`enabled`|Specifies whether a web proxy is used. The default value is `True`.|
40+
|`useDefaultCredentials`|Specifies whether the default credentials for this host are used to access the web proxy. The default value is `False`.|
4141

4242
### Child Elements
4343

@@ -69,9 +69,9 @@ Configures the Hypertext Transfer Protocol (HTTP) proxy server.
6969
<system.net>
7070
<defaultProxy>
7171
<proxy
72-
usesystemdefault="true"
72+
usesystemdefault="True"
7373
proxyaddress="http://192.168.1.10:3128"
74-
bypassonlocal="true"
74+
bypassonlocal="True"
7575
/>
7676
<bypasslist>
7777
<add address="[a-z]+\.contoso\.com$" />

docs/framework/configure-apps/file-schema/network/proxy-element-network-settings.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Defines a proxy server.
2222

2323
```xml
2424
<proxy
25-
autoDetect="true|false|unspecified"
26-
bypassonlocal="true|false|unspecified"
25+
autoDetect="True|False|Unspecified"
26+
bypassonlocal="True|False|Unspecified"
2727
proxyaddress="uriString"
2828
scriptLocation="uriString"
29-
usesystemdefault="true|false|unspecified"
29+
usesystemdefault="True|False|Unspecified"
3030
/>
3131
```
3232

@@ -37,11 +37,11 @@ Defines a proxy server.
3737

3838
|**Attribute**|**Description**|
3939
|-------------------|---------------------|
40-
|`autoDetect`|Specifies whether the proxy is automatically detected. The default value is `unspecified`.|
41-
|`bypassonlocal`|Specifies whether the proxy is bypassed for local resources. Local resources include the local server (`http://localhost`, `http://loopback`, or `http://127.0.0.1`) and a URI without a period (`http://webserver`). The default value is `unspecified`.|
40+
|`autoDetect`|Specifies whether the proxy is automatically detected. The default value is `Unspecified`.|
41+
|`bypassonlocal`|Specifies whether the proxy is bypassed for local resources. Local resources include the local server (`http://localhost`, `http://loopback`, or `http://127.0.0.1`) and a URI without a period (`http://webserver`). The default value is `Unspecified`.|
4242
|`proxyaddress`|Specifies the proxy URI to use.|
4343
|`scriptLocation`|Specifies the location of the configuration script. Do not use the `bypassonlocal` attribute with this attribute. |
44-
|`usesystemdefault`|Specifies whether to use Internet Explorer proxy settings. If set to `true`, subsequent attributes will override Internet Explorer proxy settings. The default value is `unspecified`.|
44+
|`usesystemdefault`|Specifies whether to use Internet Explorer proxy settings. If set to `True`, subsequent attributes will override Internet Explorer proxy settings. The default value is `Unspecified`.|
4545

4646
### Child Elements
4747
None.
@@ -76,9 +76,9 @@ Defines a proxy server.
7676
<system.net>
7777
<defaultProxy>
7878
<proxy
79-
usesystemdefault="true"
79+
usesystemdefault="True"
8080
proxyaddress="http://192.168.1.10:3128"
81-
bypassonlocal="true"
81+
bypassonlocal="True"
8282
/>
8383
</defaultProxy>
8484
</system.net>

docs/framework/network-programming/proxy-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ A proxy server handles client requests for resources. A proxy can return a reque
6161
<system.net>
6262
<defaultProxy>
6363
<proxy proxyaddress="http://proxy.contoso.com:3128"
64-
bypassonlocal="true"
64+
bypassonlocal="True"
6565
/>
6666
<bypasslist>
6767
<add address="[a-z]+.blueyonderairlines.com$" />

0 commit comments

Comments
 (0)