|
23 | 23 | <Interfaces />
|
24 | 24 | <Docs>
|
25 | 25 | <summary>
|
26 |
| - <see cref="T:System.Net.Http.WinHttpHandler" /> is a specialty message handler based on the WinHTTP interface of Windows and is intended for use in server environments. This class is also available for use in Desktop apps by installing it as a NuGet package. For more information about installing this class for use in Desktop apps, see [System.Net.Http.WinHttpHandler](https://go.microsoft.com/fwlink/?LinkId=620067).</summary> |
| 26 | + Handles messages based on the WinHTTP interface of Windows. This class is intended for use in server environments.</summary> |
27 | 27 | <remarks>
|
28 | 28 | <format type="text/markdown"><. |
| 41 | +
|
| 42 | +Starting in .NET 5.0, <xref:System.Net.Http.WinHttpHandler> is no longer included in the *System.Net.Http.dll* assembly as part of the .NET runtime. For more information, see [WinHttpHandler removed from .NET runtime](/dotnet/core/compatibility/3.1-5.0#winhttphandler-removed-from-net-runtime). |
| 43 | +
|
39 | 44 | ]]></format>
|
40 | 45 | </remarks>
|
41 | 46 | </Docs>
|
|
95 | 100 | <format type="text/markdown"><![CDATA[
|
96 | 101 |
|
97 | 102 | ## Remarks
|
98 |
| - The default value for this property is GZip | Deflate. |
| 103 | + The default value for this property is `GZip | Deflate`. |
99 | 104 |
|
100 | 105 | ]]></format>
|
101 | 106 | </remarks>
|
|
126 | 131 | </ReturnValue>
|
127 | 132 | <Docs>
|
128 | 133 | <summary>Gets or sets a value that indicates whether the handler should follow HTTP redirection responses.</summary>
|
129 |
| - <value>To be added.</value> |
| 134 | + <value><see langword="true" /> to follow HTTP redirection responses; otherwise, <see langword="false" />. The default is <see langword="true" />.</value> |
130 | 135 | <remarks>
|
131 | 136 | <format type="text/markdown"><![CDATA[
|
132 | 137 |
|
133 |
| -## Remarks |
134 |
| - The default value for this property is true. In this configuration, all HTTP redirect responses from the server will be followed automatically except if they are redirecting from an HTTPS endpoint to an HTTP endpoint. |
| 138 | +## Remarks |
| 139 | +
|
| 140 | +When this property is set to `true`, all HTTP redirect responses from the server will be followed automatically except if they are redirecting from an HTTPS endpoint to an HTTP endpoint. |
135 | 141 |
|
136 | 142 | ]]></format>
|
137 | 143 | </remarks>
|
|
162 | 168 | </ReturnValue>
|
163 | 169 | <Docs>
|
164 | 170 | <summary>Gets or sets a value that indicates whether to check the revocation list of certificates during SSL certificate validation.</summary>
|
165 |
| - <value>To be added.</value> |
166 |
| - <remarks> |
167 |
| - <format type="text/markdown"><![CDATA[ |
168 |
| - |
169 |
| -## Remarks |
170 |
| - The default value for this property is false. |
171 |
| - |
172 |
| - ]]></format> |
173 |
| - </remarks> |
| 171 | + <value><see langword="true" /> to check the revocation list of certificates during SSL certificate validation; otherwise, <see langword="false" />. The default is <see langword="false" />.</value> |
| 172 | + <remarks>To be added.</remarks> |
174 | 173 | </Docs>
|
175 | 174 | </Member>
|
176 | 175 | <Member MemberName="ClientCertificateOption">
|
|
234 | 233 | <ReturnType>System.Security.Cryptography.X509Certificates.X509Certificate2Collection</ReturnType>
|
235 | 234 | </ReturnValue>
|
236 | 235 | <Docs>
|
237 |
| - <summary>Gets or sets a collection of client authentication SSL certificates that are used for client authentication by the Handler if the <see cref="P:System.Net.Http.WinHttpHandler.ClientCertificateOption" /> property is set to Manual.</summary> |
| 236 | + <summary>Gets a collection of client authentication SSL certificates that are used for client authentication by the handler if the <see cref="P:System.Net.Http.WinHttpHandler.ClientCertificateOption" /> property is set to <see langword="Manual" />.</summary> |
238 | 237 | <value>To be added.</value>
|
239 | 238 | <remarks>
|
240 | 239 | <format type="text/markdown"><![CDATA[
|
|
573 | 572 | <format type="text/markdown"><![CDATA[
|
574 | 573 |
|
575 | 574 | ## Remarks
|
576 |
| - The default value for this property is false. |
| 575 | + The default value for this property is `false`. |
577 | 576 |
|
578 | 577 | ]]></format>
|
579 | 578 | </remarks>
|
|
639 | 638 | <format type="text/markdown"><![CDATA[
|
640 | 639 |
|
641 | 640 | ## Remarks
|
642 |
| - The default value for this property is null. |
| 641 | + The default value for this property is `null`. |
643 | 642 |
|
644 | 643 | ]]></format>
|
645 | 644 | </remarks>
|
|
814 | 813 | </ReturnValue>
|
815 | 814 | <Docs>
|
816 | 815 | <summary>Gets or sets a callback method to validate the server certificate. This callback is part of the SSL handshake.</summary>
|
817 |
| - <value>The callback should return true if the server certificate is considered valid and the request should be sent. Otherwise, return false.</value> |
| 816 | + <value>The callback should return <see langword="true" /> if the server certificate is considered valid and the request should be sent. Otherwise, return <see langword="false" />.</value> |
818 | 817 | <remarks>
|
819 | 818 | <format type="text/markdown"><![CDATA[
|
820 | 819 |
|
821 | 820 | ## Remarks
|
822 |
| - The default value is null. If this property is null, the server certificate will be validated using standard well-known certificate authorities. |
| 821 | + The default value is `null`. If this property is `null`, the server certificate is validated using standard well-known certificate authorities. |
823 | 822 |
|
824 | 823 | ]]></format>
|
825 | 824 | </remarks>
|
|
855 | 854 | <format type="text/markdown"><![CDATA[
|
856 | 855 |
|
857 | 856 | ## Remarks
|
858 |
| - The default value for this property is null. |
| 857 | + The default value for this property is `null`. |
859 | 858 |
|
860 | 859 | ]]></format>
|
861 | 860 | </remarks>
|
|
891 | 890 | <format type="text/markdown"><![CDATA[
|
892 | 891 |
|
893 | 892 | ## Remarks
|
894 |
| - The default value is SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12. |
| 893 | + The default value is `SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12`. |
895 | 894 |
|
896 | 895 | ]]></format>
|
897 | 896 | </remarks>
|
|
0 commit comments