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: 0x020001CC RID: 460
|
|
[Token(Token = "0x20001CC")]
|
|
[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: 0x06000C3E RID: 3134 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C3E")]
|
|
[Address(RVA = "0x3F6080", Offset = "0x3F4E80", VA = "0x1803F6080")]
|
|
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: 0x06000C3F RID: 3135 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C3F")]
|
|
[Address(RVA = "0x3F60D0", Offset = "0x3F4ED0", VA = "0x1803F60D0")]
|
|
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: 0x06000C40 RID: 3136 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C40")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
{
|
|
}
|
|
}
|
|
}
|