SslProtocols Enum
NuGet: GHIElectronics.TinyCLR.Networking
Assembly: GHIElectronics.TinyCLR.Networking
Namespace: System.Security.Authentication
Defines the SSL and TLS protocol versions that can be used.
public enum SslProtocols
Fields
| Name | Value | Description |
|---|---|---|
None | 0 | No protocol is specified. |
Ssl2 | SchProtocols.Ssl2 | The SSL 2.0 protocol. |
Ssl3 | SchProtocols.Ssl3 | The SSL 3.0 protocol. |
Tls | SchProtocols.Tls10 | The TLS 1.0 protocol. |
Tls11 | SchProtocols.Tls11 | The TLS 1.1 protocol. |
Tls12 | SchProtocols.Tls12 | The TLS 1.2 protocol. |
Default | Ssl3 | Tls | Allows the operating system to choose between SSL 3.0 and TLS 1.0. |