IObjectHandle.cs 257 B

123456789101112131415161718
  1. //
  2. // System.Runtime.Remoting.IObjectHandle.cs
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.Remoting
  10. {
  11. public interface IObjectHandle
  12. {
  13. object Unwrap ();
  14. }
  15. }