| 1234567891011121314151617181920212223 |
- //
- // System.Runtime.Remoting.Contexts.IContextProperty..cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.Remoting.Contexts {
- public interface IContextProperty {
- string Name {
- get;
- }
- void Freeze (Context ctx);
- bool IsNewContextOK (Context ctx);
- }
- }
|