Files
Aug2021-Cpp2IL-Dump/mscorlib/System/ContextMarshalException.cs
T
2026-04-10 22:50:51 +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: 0x020000CB RID: 203
[Token(Token = "0x20000CB")]
[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: 0x0600060A RID: 1546 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600060A")]
[Address(RVA = "0x25343D0", Offset = "0x25331D0", VA = "0x1825343D0")]
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: 0x0600060B RID: 1547 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600060B")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected ContextMarshalException(SerializationInfo info, StreamingContext context)
{
}
}
}