mscorlib(4.0.0.0) API with additions
ITrackingHandler.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface ITrackingHandler
9  {
13  [SecurityCritical]
14  void MarshaledObject(object obj, ObjRef or);
15 
19  [SecurityCritical]
20  void UnmarshaledObject(object obj, ObjRef or);
21 
24  [SecurityCritical]
25  void DisconnectedObject(object obj);
26  }
27 }
void UnmarshaledObject(object obj, ObjRef or)
Notifies the current instance that an object has been unmarshaled.
Definition: __Canon.cs:3
Stores all relevant information required to generate a proxy in order to communicate with a remote ob...
Definition: ObjRef.cs:19
void DisconnectedObject(object obj)
Notifies the current instance that an object has been disconnected from its proxy.
Indicates that the implementing object must be notified of marshaling, unmarshaling,...
void MarshaledObject(object obj, ObjRef or)
Notifies the current instance that an object has been marshaled.