ContextProperty.cs 453 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Runtime.Remoting.Contexts.ContextProperty..cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Runtime.Remoting.Contexts {
  10. public class ContextProperty
  11. {
  12. [MonoTODO]
  13. public virtual string Name {
  14. get { throw new NotImplementedException (); }
  15. }
  16. [MonoTODO]
  17. public virtual object Property {
  18. get { throw new NotImplementedException (); }
  19. }
  20. }
  21. }