Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Messaging/CallContext.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000514 RID: 1300
[Token(Token = "0x2000514")]
[ComVisible(true)]
[Serializable]
public sealed class CallContext
{
// Token: 0x06002AC1 RID: 10945 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002AC1")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
private CallContext()
{
}
// Token: 0x06002AC2 RID: 10946 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002AC2")]
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0")]
internal static object SetCurrentCallContext(LogicalCallContext ctx)
{
return null;
}
// Token: 0x06002AC3 RID: 10947 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002AC3")]
[Address(RVA = "0x2BF6290", Offset = "0x2BF5290", VA = "0x182BF6290")]
internal static LogicalCallContext SetLogicalCallContext(LogicalCallContext callCtx)
{
return null;
}
}
}