42 lines
2.4 KiB
C#
42 lines
2.4 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Authentication
|
|
{
|
|
/// <summary>The exception that is thrown when authentication fails for an authentication stream.</summary>
|
|
// Token: 0x020001C8 RID: 456
|
|
[Token(Token = "0x20001C8")]
|
|
[Serializable]
|
|
public class AuthenticationException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Authentication.AuthenticationException" /> class with no message.</summary>
|
|
// Token: 0x06000C28 RID: 3112 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C28")]
|
|
[Address(RVA = "0x7679B0", Offset = "0x7669B0", VA = "0x1807679B0")]
|
|
public AuthenticationException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Authentication.AuthenticationException" /> class with the specified message and inner exception.</summary>
|
|
/// <param name="message">A <see cref="T:System.String" /> that describes the authentication failure.</param>
|
|
/// <param name="innerException">The <see cref="T:System.Exception" /> that is the cause of the current exception.</param>
|
|
// Token: 0x06000C29 RID: 3113 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C29")]
|
|
[Address(RVA = "0x767A00", Offset = "0x766A00", VA = "0x180767A00")]
|
|
public AuthenticationException(string message, Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Authentication.AuthenticationException" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
|
|
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance that contains the information required to deserialize the new <see cref="T:System.Security.Authentication.AuthenticationException" /> instance.</param>
|
|
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> instance.</param>
|
|
// Token: 0x06000C2A RID: 3114 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C2A")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
{
|
|
}
|
|
}
|
|
}
|