Add new classes to get rid of the warnings being emitted by the
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IContextAttribute.cs
1 //
2 // System.Runtime.Remoting.Contexts.IContextAttribute..cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Runtime.Remoting.Activation;
11
12 namespace System.Runtime.Remoting.Contexts {
13
14         public interface IContextAttribute {
15
16                 void GetPropertiesForNewContext (IConstructionCallMessage msg);
17
18                 bool IsContextOK (Context ctx, IConstructionCallMessage msg);
19         }
20 }