Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

81 lines
4.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security
{
/// <summary>The exception that is thrown when a security error is detected.</summary>
// Token: 0x020003C6 RID: 966
[Token(Token = "0x20003C6")]
[ComVisible(true)]
[Serializable]
public class SecurityException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with default properties.</summary>
// Token: 0x0600228D RID: 8845 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228D")]
[Address(RVA = "0xD0BD50", Offset = "0xD0AD50", VA = "0x180D0BD50")]
public SecurityException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x0600228E RID: 8846 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228E")]
[Address(RVA = "0xD0BDC0", Offset = "0xD0ADC0", VA = "0x180D0BDC0")]
public SecurityException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x0600228F RID: 8847 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228F")]
[Address(RVA = "0xD0BDE0", Offset = "0xD0ADE0", VA = "0x180D0BDE0")]
protected SecurityException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06002290 RID: 8848 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002290")]
[Address(RVA = "0xD0BDA0", Offset = "0xD0ADA0", VA = "0x180D0BDA0")]
public SecurityException(string message, Exception inner)
{
}
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the <see cref="T:System.Security.SecurityException" />.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
// Token: 0x06002291 RID: 8849 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002291")]
[Address(RVA = "0xD0BC90", Offset = "0xD0AC90", VA = "0x180D0BC90", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Returns a representation of the current <see cref="T:System.Security.SecurityException" />.</summary>
/// <returns>A string representation of the current <see cref="T:System.Security.SecurityException" />.</returns>
// Token: 0x06002292 RID: 8850 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002292")]
[Address(RVA = "0xD0BD40", Offset = "0xD0AD40", VA = "0x180D0BD40", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x0400133E RID: 4926
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x400133E")]
private string permissionState;
}
}