This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x020004DA RID: 1242
[Token(Token = "0x20004DA")]
[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: 0x060029CB RID: 10699
[Token(Token = "0x60029CB")]
[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: 0x060029CC RID: 10700
[Token(Token = "0x60029CC")]
[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: 0x060029CD RID: 10701
[Token(Token = "0x60029CD")]
[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: 0x020004DB RID: 1243
[Token(Token = "0x20004DB")]
[ComVisible(true)]
public class TrackingServices
{
// Token: 0x060029CE RID: 10702 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029CE")]
[Address(RVA = "0x2CB66F0", Offset = "0x2CB56F0", VA = "0x182CB66F0")]
internal static void NotifyMarshaledObject(object obj, ObjRef or)
{
}
// Token: 0x060029CF RID: 10703 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029CF")]
[Address(RVA = "0x2CB6A60", Offset = "0x2CB5A60", VA = "0x182CB6A60")]
internal static void NotifyUnmarshaledObject(object obj, ObjRef or)
{
}
// Token: 0x060029D0 RID: 10704 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029D0")]
[Address(RVA = "0x2CB6390", Offset = "0x2CB5390", VA = "0x182CB6390")]
internal static void NotifyDisconnectedObject(object obj)
{
}
// Token: 0x04001822 RID: 6178
[Token(Token = "0x4001822")]
private static ArrayList _handlers;
}
}