43 lines
1.9 KiB
C#
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: 0x02000246 RID: 582
|
|
[Token(Token = "0x2000246")]
|
|
[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: 0x060014F7 RID: 5367 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60014F7")]
|
|
[Address(RVA = "0x30B6940", Offset = "0x30B5940", VA = "0x1830B6940")]
|
|
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: 0x060014F8 RID: 5368 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60014F8")]
|
|
[Address(RVA = "0xDCB800", Offset = "0xDCA800", VA = "0x180DCB800")]
|
|
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: 0x060014F9 RID: 5369 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60014F9")]
|
|
[Address(RVA = "0xDCB7E0", Offset = "0xDCA7E0", VA = "0x180DCB7E0")]
|
|
protected CustomAttributeFormatException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|