This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,36 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Services
{
/// <summary>Indicates that the implementing object must be notified of marshaling, unmarshaling, and disconnection of objects and proxies by the remoting infrastructure.</summary>
// Token: 0x020004BE RID: 1214
[Token(Token = "0x20004BE")]
[ComVisible(true)]
public interface ITrackingHandler
{
/// <summary>Notifies the current instance that an object has been disconnected from its proxy.</summary>
/// <param name="obj">The disconnected object.</param>
// Token: 0x060027BE RID: 10174
[Token(Token = "0x60027BE")]
[Address(Slot = "0")]
void DisconnectedObject(object obj);
/// <summary>Notifies the current instance that an object has been marshaled.</summary>
/// <param name="obj">The object that has been marshaled.</param>
/// <param name="or">The <see cref="T:System.Runtime.Remoting.ObjRef" /> that results from marshaling and represents the specified object.</param>
// Token: 0x060027BF RID: 10175
[Token(Token = "0x60027BF")]
[Address(Slot = "1")]
void MarshaledObject(object obj, ObjRef or);
/// <summary>Notifies the current instance that an object has been unmarshaled.</summary>
/// <param name="obj">The unmarshaled object.</param>
/// <param name="or">The <see cref="T:System.Runtime.Remoting.ObjRef" /> that represents the specified object.</param>
// Token: 0x060027C0 RID: 10176
[Token(Token = "0x60027C0")]
[Address(Slot = "2")]
void UnmarshaledObject(object obj, ObjRef or);
}
}
@@ -0,0 +1,39 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Services
{
/// <summary>Provides a way to register, unregister, and obtain a list of tracking handlers.</summary>
// Token: 0x020004BF RID: 1215
[Token(Token = "0x20004BF")]
[ComVisible(true)]
public class TrackingServices
{
// Token: 0x060027C1 RID: 10177 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60027C1")]
[Address(RVA = "0x25CB7D0", Offset = "0x25CA5D0", VA = "0x1825CB7D0")]
internal static void NotifyMarshaledObject(object obj, ObjRef or)
{
}
// Token: 0x060027C2 RID: 10178 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60027C2")]
[Address(RVA = "0x25CBB40", Offset = "0x25CA940", VA = "0x1825CBB40")]
internal static void NotifyUnmarshaledObject(object obj, ObjRef or)
{
}
// Token: 0x060027C3 RID: 10179 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60027C3")]
[Address(RVA = "0x25CB470", Offset = "0x25CA270", VA = "0x1825CB470")]
internal static void NotifyDisconnectedObject(object obj)
{
}
// Token: 0x0400175F RID: 5983
[Token(Token = "0x400175F")]
private static ArrayList _handlers;
}
}