Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/InteropServices/MarshalDirectiveException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

44 lines
2.0 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>The exception that is thrown by the marshaler when it encounters a <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> it does not support.</summary>
// Token: 0x020005A2 RID: 1442
[Token(Token = "0x20005A2")]
[ComVisible(true)]
[Serializable]
public class MarshalDirectiveException : SystemException
{
/// <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class with default properties.</summary>
// Token: 0x06002CD4 RID: 11476 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CD4")]
[Address(RVA = "0x2CF0F40", Offset = "0x2CEFF40", VA = "0x182CF0F40")]
public MarshalDirectiveException()
{
}
/// <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class with a specified error message.</summary>
/// <param name="message">The error message that specifies the reason for the exception.</param>
// Token: 0x06002CD5 RID: 11477 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CD5")]
[Address(RVA = "0x2CF0FA0", Offset = "0x2CEFFA0", VA = "0x182CF0FA0")]
public MarshalDirectiveException(string message)
{
}
/// <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class from serialization 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: 0x06002CD6 RID: 11478 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CD6")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected MarshalDirectiveException(SerializationInfo info, StreamingContext context)
{
}
}
}