using System; using System.Runtime.InteropServices; namespace System.Runtime.Serialization { /// Indicates that the current interface implementer is a reference to another object. // Token: 0x0200047E RID: 1150 [ComVisible(true)] public interface IObjectReference { /// Returns the real object that should be deserialized, rather than the object that the serialized stream specifies. /// Returns the actual object that is put into the graph. /// The from which the current object is deserialized. /// The caller does not have the required permission. The call will not work on a medium trusted server. // Token: 0x06002BFB RID: 11259 object GetRealObject(StreamingContext context); } }