Files
27Aug2021-Cpp2IL-Dump/System/Net/Security/AuthenticationLevel.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Net.Security
{
/// <summary>Specifies client requirements for authentication and impersonation when using the <see cref="T:System.Net.WebRequest" /> class and derived classes to request a resource.</summary>
// Token: 0x020002F0 RID: 752
[Token(Token = "0x20002F0")]
public enum AuthenticationLevel
{
/// <summary>No authentication is required for the client and server.</summary>
// Token: 0x04000CC4 RID: 3268
[Token(Token = "0x4000CC4")]
None,
/// <summary>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 <see cref="P:System.Net.WebResponse.IsMutuallyAuthenticated" /> property.</summary>
// Token: 0x04000CC5 RID: 3269
[Token(Token = "0x4000CC5")]
MutualAuthRequested,
/// <summary>The client and server should be authenticated. If the server is not authenticated, your application will receive an <see cref="T:System.IO.IOException" /> with a <see cref="T:System.Net.ProtocolViolationException" /> inner exception that indicates that mutual authentication failed</summary>
// Token: 0x04000CC6 RID: 3270
[Token(Token = "0x4000CC6")]
MutualAuthRequired
}
}