using System; using Cpp2IlInjected; namespace System.Net { /// Specifies the security protocols that are supported by the Schannel security package. // Token: 0x0200021A RID: 538 [Token(Token = "0x200021A")] [Flags] public enum SecurityProtocolType { /// Allows the operating system to choose the best protocol to use, and to block protocols that are not secure. Unless your app has a specific reason not to, you should use this value. // Token: 0x0400077C RID: 1916 [Token(Token = "0x400077C")] SystemDefault = 0, /// Specifies the Secure Socket Layer (SSL) 3.0 security protocol. SSL 3.0 has been superseded by the Transport Layer Security (TLS) protocol and is provided for backward compatibility only. // Token: 0x0400077D RID: 1917 [Token(Token = "0x400077D")] Ssl3 = 48, /// Specifies the Transport Layer Security (TLS) 1.0 security protocol. The TLS 1.0 protocol is defined in IETF RFC 2246. // Token: 0x0400077E RID: 1918 [Token(Token = "0x400077E")] Tls = 192, /// Specifies the Transport Layer Security (TLS) 1.1 security protocol. The TLS 1.1 protocol is defined in IETF RFC 4346. On Windows systems, this value is supported starting with Windows 7. // Token: 0x0400077F RID: 1919 [Token(Token = "0x400077F")] Tls11 = 768, /// Specifies the Transport Layer Security (TLS) 1.2 security protocol. The TLS 1.2 protocol is defined in IETF RFC 5246. On Windows systems, this value is supported starting with Windows 7. // Token: 0x04000780 RID: 1920 [Token(Token = "0x4000780")] Tls12 = 3072 } }