Added the IVsa interfaces that are used for runtime support of script engines.
[mono.git] / mcs / class / Microsoft.Vsa / Microsoft.Vsa / IVsaGlobalItem.cs
1 //
2 // IVsaGlobalItem.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
5 //
6
7 namespace Microsoft.Vsa
8 {       
9         using System;
10         using System.Runtime.InteropServices;
11
12
13         //[Guid ("")]
14         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
15         public interface IVsaGlobalItem : IVsaItem
16         {
17                 //[Guid ("")]
18                 [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
19                 bool ExposeMembers {
20                         get;
21                         set;
22                 }
23
24
25                 //[Guid ("")]
26                 [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
27                 string TypeString { set; }
28         }
29 }
30
31