Add new classes to get rid of the warnings being emitted by the
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Activation / IConstructionCallMessage.cs
1 //
2 // System.Runtime.Remoting.Activation.IConstructionCallMessage.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.Collections;
11
12 namespace System.Runtime.Remoting.Activation {
13
14         public interface IConstructionCallMessage {
15                 Type ActivationType {
16                         get;
17                 }
18
19                 string ActivationTypeName {
20                         get;
21                 }
22
23                 IActivator Activator {
24                         get;
25                         set;
26                 }
27
28                 object [] CallSiteActivationAttributes {
29                         get;
30                 }
31
32                 IList ContextProperties {
33                         get;
34                 }
35         }
36 }