Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Security/Cryptography/CryptographicException.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

91 lines
4.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>The exception that is thrown when an error occurs during a cryptographic operation.</summary>
// Token: 0x020003D9 RID: 985
[Token(Token = "0x20003D9")]
[ComVisible(true)]
[Serializable]
public class CryptographicException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with default properties.</summary>
// Token: 0x0600213D RID: 8509 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600213D")]
[Address(RVA = "0x298F4F0", Offset = "0x298E2F0", VA = "0x18298F4F0")]
public CryptographicException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x0600213E RID: 8510 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600213E")]
[Address(RVA = "0x298F4C0", Offset = "0x298E2C0", VA = "0x18298F4C0")]
public CryptographicException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> 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: 0x0600213F RID: 8511 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600213F")]
[Address(RVA = "0x298F580", Offset = "0x298E380", VA = "0x18298F580")]
public CryptographicException(string format, string insert)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> 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: 0x06002140 RID: 8512 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002140")]
[Address(RVA = "0x298F550", Offset = "0x298E350", VA = "0x18298F550")]
public CryptographicException(string message, Exception inner)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> class with the specified <see langword="HRESULT" /> error code.</summary>
/// <param name="hr">The <see langword="HRESULT" /> error code.</param>
// Token: 0x06002141 RID: 8513 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002141")]
[Address(RVA = "0x298F620", Offset = "0x298E420", VA = "0x18298F620")]
public CryptographicException(int hr)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException" /> 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: 0x06002142 RID: 8514 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002142")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected CryptographicException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002143 RID: 8515 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002143")]
[Address(RVA = "0x298F460", Offset = "0x298E260", VA = "0x18298F460")]
private static void ThrowCryptographicException(int hr)
{
}
// Token: 0x04001308 RID: 4872
[Token(Token = "0x4001308")]
private const int FORMAT_MESSAGE_IGNORE_INSERTS = 512;
// Token: 0x04001309 RID: 4873
[Token(Token = "0x4001309")]
private const int FORMAT_MESSAGE_FROM_SYSTEM = 4096;
// Token: 0x0400130A RID: 4874
[Token(Token = "0x400130A")]
private const int FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192;
}
}