mscorlib(4.0.0.0) API with additions
IObjectReference.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IObjectReference
9  {
14  [SecurityCritical]
15  object GetRealObject(StreamingContext context);
16  }
17 }
Indicates that the current interface implementer is a reference to another object.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
object GetRealObject(StreamingContext context)
Returns the real object that should be deserialized, rather than the object that the serialized strea...