using System;
namespace System.Security.Authentication
{
/// Defines the possible versions of .
// Token: 0x0200027E RID: 638
[Flags]
public enum SslProtocols
{
/// No SSL protocol is specified.
// Token: 0x040012BB RID: 4795
None = 0,
/// Specifies the SSL 2.0 protocol. SSL 2.0 has been superseded by the TLS protocol and is provided for backward compatibility only.
// Token: 0x040012BC RID: 4796
Ssl2 = 12,
/// Specifies the SSL 3.0 protocol. SSL 3.0 has been superseded by the TLS protocol and is provided for backward compatibility only.
// Token: 0x040012BD RID: 4797
Ssl3 = 48,
/// Specifies the TLS 1.0 security protocol. The TLS protocol is defined in IETF RFC 2246.
// Token: 0x040012BE RID: 4798
Tls = 192,
/// Specifies that either Secure Sockets Layer (SSL) 3.0 or Transport Layer Security (TLS) 1.0 are acceptable for secure communications
// Token: 0x040012BF RID: 4799
Default = 240
}
}