Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

34 lines
1.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an attempt to marshal an object across a context boundary fails.</summary>
// Token: 0x020000D2 RID: 210
[Token(Token = "0x20000D2")]
[ComVisible(true)]
[Serializable]
public class ContextMarshalException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with default properties.</summary>
// Token: 0x06000627 RID: 1575 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000627")]
[Address(RVA = "0x2C31DD0", Offset = "0x2C30DD0", VA = "0x182C31DD0")]
public ContextMarshalException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// Token: 0x06000628 RID: 1576 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000628")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected ContextMarshalException(SerializationInfo info, StreamingContext context)
{
}
}
}