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

43 lines
1.9 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>The exception that is thrown when the binary format of a custom attribute is invalid.</summary>
// Token: 0x0200023F RID: 575
[Token(Token = "0x200023F")]
[ComVisible(true)]
[Serializable]
public class CustomAttributeFormatException : FormatException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the default properties.</summary>
// Token: 0x060014B8 RID: 5304 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014B8")]
[Address(RVA = "0x2A047E0", Offset = "0x2A035E0", VA = "0x182A047E0")]
public CustomAttributeFormatException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the specified message.</summary>
/// <param name="message">The message that indicates the reason this exception was thrown.</param>
// Token: 0x060014B9 RID: 5305 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014B9")]
[Address(RVA = "0x71DAB0", Offset = "0x71C8B0", VA = "0x18071DAB0")]
public CustomAttributeFormatException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.CustomAttributeFormatException" /> class with the specified serialization and context information.</summary>
/// <param name="info">The data for serializing or deserializing the custom attribute.</param>
/// <param name="context">The source and destination for the custom attribute.</param>
// Token: 0x060014BA RID: 5306 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014BA")]
[Address(RVA = "0x71DAA0", Offset = "0x71C8A0", VA = "0x18071DAA0")]
protected CustomAttributeFormatException(SerializationInfo info, StreamingContext context)
{
}
}
}