using System; namespace System.Net.Security { /// Indicates the security services requested for an authenticated stream. // Token: 0x020001D5 RID: 469 public enum ProtectionLevel { /// Authentication only. // Token: 0x04000DA6 RID: 3494 None, /// Sign data to help ensure the integrity of transmitted data. // Token: 0x04000DA7 RID: 3495 Sign, /// Encrypt and sign data to help ensure the confidentiality and integrity of transmitted data. // Token: 0x04000DA8 RID: 3496 EncryptAndSign } }