Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions xml/System.Net.Security/SslClientAuthenticationOptions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@

## Remarks

When the value of this property is not `null`:
When this property isn't `null`, certain properties on `SslClientAuthenticationOptions` are superseded by corresponding properties on the provided <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy>:

- The value of the <xref:System.Net.Security.SslClientAuthenticationOptions.CertificateRevocationCheckMode> property is ignored.
- Any <xref:System.Net.Security.SslCertificateTrust> associated with the <xref:System.Net.Security.SslClientAuthenticationOptions.ClientCertificateContext> is ignored.
- <xref:System.Net.Security.SslClientAuthenticationOptions.CertificateRevocationCheckMode> is superseded by <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.RevocationMode>.
- Any <xref:System.Net.Security.SslCertificateTrust> associated with <xref:System.Net.Security.SslClientAuthenticationOptions.ClientCertificateContext> is superseded by <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.TrustMode> and <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.CustomTrustStore>.
]]></format>
</remarks>
</Docs>
Expand Down
6 changes: 3 additions & 3 deletions xml/System.Net.Security/SslServerAuthenticationOptions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@

## Remarks

When the value of this property is not `null`:
When this property isn't `null`, certain properties on `SslServerAuthenticationOptions` are superseded by corresponding properties on the provided <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy>:

- The value of the <xref:System.Net.Security.SslServerAuthenticationOptions.CertificateRevocationCheckMode> property is ignored.
- If an <xref:System.Net.Security.SslCertificateTrust> was provided to the value in the <xref:System.Net.Security.SslServerAuthenticationOptions.ServerCertificateContext> property, the trust list `SslCertificateTrust` will be sent in the handshake (when so configured), but the trust settings from this property aren't used when verifying any client authentication certificates.
- <xref:System.Net.Security.SslServerAuthenticationOptions.CertificateRevocationCheckMode> is superseded by <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.RevocationMode>.
- Any <xref:System.Net.Security.SslCertificateTrust> associated with <xref:System.Net.Security.SslServerAuthenticationOptions.ServerCertificateContext> is superseded by <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.TrustMode> and <xref:System.Security.Cryptography.X509Certificates.X509ChainPolicy.CustomTrustStore>. However, the trust list from `SslCertificateTrust` is still sent in the handshake when configured.
]]></format>
</remarks>
</Docs>
Expand Down
Loading