2004-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IContextProperty.cs
1 //
2 // System.Runtime.Remoting.Contexts.IContextProperty..cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10
11 namespace System.Runtime.Remoting.Contexts {
12
13         public interface IContextProperty {
14
15                 string Name {
16                         get;
17                 }
18
19                 void Freeze (Context ctx);
20
21                 bool IsNewContextOK (Context ctx);
22         }
23 }