scripts
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user