Files
2026-06-04 11:42:34 +02:00

20 lines
593 B
C#

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
}
}