-
Notifications
You must be signed in to change notification settings - Fork 1.6k
SslServerAuthenticationOptions - update documentation #4367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
a4a1c55
119b696
8239f0d
64fdfc0
229a81d
e76b2cf
c6e118f
8887daa
02648a0
f3c6625
a530e18
9921593
7d43391
27ea1db
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,8 +23,15 @@ | |
| </Base> | ||
| <Interfaces /> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <remarks>To be added.</remarks> | ||
| <summary>This struct represents a server authentication property bag for the <see cref="T:System.Net.Security.SslStream" />.</summary> | ||
| <remarks> | ||
| <format type="text/markdown"><![CDATA[ | ||
|
|
||
| ## Remarks | ||
| This property bag is used as argument for <xref:System.Net.Security.SslStream.AuthenticateAsServer%2A>, or <xref:System.Net.Security.SslStream.BeginAuthenticateAsServer%2A>. | ||
|
|
||
| ]]></format> | ||
| </remarks> | ||
| </Docs> | ||
| <Members> | ||
| <Member MemberName=".ctor"> | ||
|
|
@@ -46,7 +53,7 @@ | |
| </AssemblyInfo> | ||
| <Parameters /> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Initializes a new instance of the <see cref="T:System.Net.Security.SslServerAuthenticationOptions" /> class.</summary> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
| </Member> | ||
|
|
@@ -72,8 +79,8 @@ | |
| <ReturnType>System.Boolean</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <value>To be added.</value> | ||
| <summary>Gets or sets a value that indicates whether the <see:System.Net.Security.SslStream> should allow SSL renegotiation.</summary> | ||
| <value><see langword="true" /> to indicate that the <see cref="T:System.Net.Security.SslStream" /> allow SSL renegotiation; otherwise, <see langword="false" />. The default value is <see langword="true" />.</value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
| </Member> | ||
|
|
@@ -99,7 +106,7 @@ | |
| <ReturnType>System.Collections.Generic.List<System.Net.Security.SslApplicationProtocol></ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Gets or sets a list of <see cref="T:System.Net.Security.SslApplicationProtocol" />.</summary> | ||
aik-jahoda marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
ManickaP marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </Docs> | ||
|
|
@@ -126,9 +133,20 @@ | |
| <ReturnType>System.Security.Cryptography.X509Certificates.X509RevocationMode</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
| <summary>Gets or sets the certificate revocation mode for certificate validation.</summary> | ||
| <value>One of the values in <see cref="T:System.Security.Cryptography.X509Certificates.X509RevocationMode" />: <see langword="NoCheck" />, <see langword="Online" />, or <see langword="Offline" />. The default is <see langword="Online" />.</value> | ||
| <remarks> | ||
| <format type="text/markdown"><. | ||
ManickaP marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ]]></format> | ||
| </remarks> | ||
| <exception cref="T:System.ArgumentException"> | ||
| The value contains an invalid enumeration value.</exception> | ||
| </Docs> | ||
| </Member> | ||
| <Member MemberName="CipherSuitesPolicy"> | ||
|
|
@@ -179,7 +197,7 @@ | |
| <ReturnType>System.Boolean</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Gets or sets a <see cref="T:System.Boolean" /> value that specifies whether the client is asked for a certificate for authentication. Note that this is only a request -- if no certificate is provided, the server still accepts the connection request.</summary> | ||
|
||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
|
|
@@ -206,8 +224,8 @@ | |
| <ReturnType>System.Security.Authentication.SslProtocols</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <value>To be added.</value> | ||
| <summary>Gets or sets the <see cref="T:System.Security.Authentication.SslProtocols" /> value that represents the protocol used for authentication.</summary> | ||
aik-jahoda marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <value>The default value is <see cref="F:System.Security.Authentication.SslProtocols.None" /></value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
| </Member> | ||
|
|
@@ -233,9 +251,11 @@ | |
| <ReturnType>System.Net.Security.EncryptionPolicy</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <value>To be added.</value> | ||
| <summary>Gets or sets the <see cref="T:System.Net.Security.EncryptionPolicy" />.</summary> | ||
| <value>The default value is <see cref="F:System.Net.Security.EncryptionPolicy.RequireEncryption" /></value> | ||
| <remarks>To be added.</remarks> | ||
| <exception cref="T:System.ArgumentException"> | ||
| The value contains an invalid enumeration value.</exception> | ||
| </Docs> | ||
| </Member> | ||
| <Member MemberName="RemoteCertificateValidationCallback"> | ||
|
|
@@ -260,7 +280,7 @@ | |
| <ReturnType>System.Net.Security.RemoteCertificateValidationCallback</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Gets or sets a <see cref="T:System.Net.Security.RemoteCertificateValidationCallback" /> delegate responsible for validating the certificate supplied by the remote party.</summary> | ||
|
||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
|
|
@@ -287,7 +307,7 @@ | |
| <ReturnType>System.Security.Cryptography.X509Certificates.X509Certificate</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Gets or sets the server certificate.</summary> | ||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
|
|
@@ -314,7 +334,7 @@ | |
| <ReturnType>System.Net.Security.ServerCertificateSelectionCallback</ReturnType> | ||
| </ReturnValue> | ||
| <Docs> | ||
| <summary>To be added.</summary> | ||
| <summary>Gets or sets the <see cref="T:System.Net.Security.ServerCertificateSelectionCallback" /> delegate responsible for the server certificate selection.</summary> | ||
ManickaP marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <value>To be added.</value> | ||
| <remarks>To be added.</remarks> | ||
| </Docs> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.