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

38 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Messaging
{
/// <summary>Provides a set of properties that are carried with the execution code path. This class cannot be inherited.</summary>
// Token: 0x020004F8 RID: 1272
[Token(Token = "0x20004F8")]
[ComVisible(true)]
[Serializable]
public sealed class CallContext
{
// Token: 0x060028B4 RID: 10420 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028B4")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
private CallContext()
{
}
// Token: 0x060028B5 RID: 10421 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60028B5")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630")]
internal static object SetCurrentCallContext(LogicalCallContext ctx)
{
return null;
}
// Token: 0x060028B6 RID: 10422 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60028B6")]
[Address(RVA = "0x236CDD0", Offset = "0x236BBD0", VA = "0x18236CDD0")]
internal static LogicalCallContext SetLogicalCallContext(LogicalCallContext callCtx)
{
return null;
}
}
}