Files
27Aug2021-Cpp2IL-Dump/System/Net/SecurityProtocolType.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

34 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Specifies the security protocols that are supported by the Schannel security package.</summary>
// Token: 0x0200021A RID: 538
[Token(Token = "0x200021A")]
[Flags]
public enum SecurityProtocolType
{
/// <summary>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.</summary>
// Token: 0x0400077C RID: 1916
[Token(Token = "0x400077C")]
SystemDefault = 0,
/// <summary>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.</summary>
// Token: 0x0400077D RID: 1917
[Token(Token = "0x400077D")]
Ssl3 = 48,
/// <summary>Specifies the Transport Layer Security (TLS) 1.0 security protocol. The TLS 1.0 protocol is defined in IETF RFC 2246.</summary>
// Token: 0x0400077E RID: 1918
[Token(Token = "0x400077E")]
Tls = 192,
/// <summary>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.</summary>
// Token: 0x0400077F RID: 1919
[Token(Token = "0x400077F")]
Tls11 = 768,
/// <summary>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.</summary>
// Token: 0x04000780 RID: 1920
[Token(Token = "0x4000780")]
Tls12 = 3072
}
}