This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,62 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>The exception that is thrown when an unexpected operation occurs during a cryptographic operation.</summary>
// Token: 0x020003F6 RID: 1014
[Token(Token = "0x20003F6")]
[ComVisible(true)]
[Serializable]
public class CryptographicUnexpectedOperationException : CryptographicException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with default properties.</summary>
// Token: 0x06002350 RID: 9040 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002350")]
[Address(RVA = "0xC03920", Offset = "0xC02920", VA = "0x180C03920")]
public CryptographicUnexpectedOperationException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x06002351 RID: 9041 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002351")]
[Address(RVA = "0xC03990", Offset = "0xC02990", VA = "0x180C03990")]
public CryptographicUnexpectedOperationException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message in the specified format.</summary>
/// <param name="format">The format used to output the error message.</param>
/// <param name="insert">The error message that explains the reason for the exception.</param>
// Token: 0x06002352 RID: 9042 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002352")]
[Address(RVA = "0xC03870", Offset = "0xC02870", VA = "0x180C03870")]
public CryptographicUnexpectedOperationException(string format, string insert)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> 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: 0x06002353 RID: 9043 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002353")]
[Address(RVA = "0xC03830", Offset = "0xC02830", VA = "0x180C03830")]
public CryptographicUnexpectedOperationException(string message, Exception inner)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> 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>
// Token: 0x06002354 RID: 9044 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002354")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected CryptographicUnexpectedOperationException(SerializationInfo info, StreamingContext context)
{
}
}
}