IObjectReference.cs 296 B

12345678910111213141516
  1. //
  2. // System.Runtime.Serialization.IObjectReference.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.Serialization {
  10. public interface IObjectReference {
  11. object GetRealObject (StreamingContext context);
  12. }
  13. }