using System; using Cpp2IlInjected; namespace System.Net.Security { /// Specifies client requirements for authentication and impersonation when using the class and derived classes to request a resource. // Token: 0x020002F0 RID: 752 [Token(Token = "0x20002F0")] public enum AuthenticationLevel { /// No authentication is required for the client and server. // Token: 0x04000CC4 RID: 3268 [Token(Token = "0x4000CC4")] None, /// The client and server should be authenticated. The request does not fail if the server is not authenticated. To determine whether mutual authentication occurred, check the value of the property. // Token: 0x04000CC5 RID: 3269 [Token(Token = "0x4000CC5")] MutualAuthRequested, /// The client and server should be authenticated. If the server is not authenticated, your application will receive an with a inner exception that indicates that mutual authentication failed // Token: 0x04000CC6 RID: 3270 [Token(Token = "0x4000CC6")] MutualAuthRequired } }