using System;
namespace System.Net
{
/// Specifies the security protocols that are supported by the Schannel security package.
// Token: 0x02000252 RID: 594
[Flags]
public enum SecurityProtocolType
{
/// Specifies the Secure Socket Layer (SSL) 3.0 security protocol.
// Token: 0x040011AC RID: 4524
Ssl3 = 48,
/// Specifies the Transport Layer Security (TLS) 1.0 security protocol.
// Token: 0x040011AD RID: 4525
Tls = 192
}
}