This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace System.Net.Security
{
/// <summary>Indicates the security services requested for an authenticated stream.</summary>
// Token: 0x020001D5 RID: 469
public enum ProtectionLevel
{
/// <summary>Authentication only.</summary>
// Token: 0x04000DA6 RID: 3494
None,
/// <summary>Sign data to help ensure the integrity of transmitted data.</summary>
// Token: 0x04000DA7 RID: 3495
Sign,
/// <summary>Encrypt and sign data to help ensure the confidentiality and integrity of transmitted data.</summary>
// Token: 0x04000DA8 RID: 3496
EncryptAndSign
}
}