29 lines
1.3 KiB
C#
29 lines
1.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
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: 0x02000436 RID: 1078
|
|
[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: 0x060029AA RID: 10666
|
|
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: 0x060029AB RID: 10667
|
|
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: 0x060029AC RID: 10668
|
|
void UnmarshaledObject(object obj, ObjRef or);
|
|
}
|
|
}
|