This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,80 @@
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: 0x020003AA RID: 938
[Token(Token = "0x20003AA")]
[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: 0x06002081 RID: 8321 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002081")]
[Address(RVA = "0x2C43EC0", Offset = "0x2C42CC0", VA = "0x182C43EC0")]
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: 0x06002082 RID: 8322 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002082")]
[Address(RVA = "0x2C43F30", Offset = "0x2C42D30", VA = "0x182C43F30")]
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: 0x06002083 RID: 8323 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002083")]
[Address(RVA = "0x2C43F50", Offset = "0x2C42D50", VA = "0x182C43F50")]
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: 0x06002084 RID: 8324 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002084")]
[Address(RVA = "0x2C43F10", Offset = "0x2C42D10", VA = "0x182C43F10")]
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: 0x06002085 RID: 8325 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002085")]
[Address(RVA = "0x2C43E00", Offset = "0x2C42C00", VA = "0x182C43E00", 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: 0x06002086 RID: 8326 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002086")]
[Address(RVA = "0x2C43EB0", Offset = "0x2C42CB0", VA = "0x182C43EB0", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x0400127B RID: 4731
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x400127B")]
private string permissionState;
}
}