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