| 12345678910111213141516171819202122232425 |
- //
- // System.Runtime.Remoting.Contexts.ContextProperty..cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Runtime.Remoting.Contexts {
- public class ContextProperty
- {
- [MonoTODO]
- public virtual string Name {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object Property {
- get { throw new NotImplementedException (); }
- }
- }
- }
|