Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IVsaCodeItem.cs « Microsoft.Vsa « Microsoft.Vsa « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d5175ce0fe3987d0f24ed0e2981e54bcb41d34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// IVsaCodeItem.cs
//
// Author: Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
//

namespace Microsoft.Vsa
{
	using System;
	using System.Runtime.InteropServices;
	using System.CodeDom;


	//[Guid ("")]
	[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        public interface IVsaCodeItem : IVsaItem
	{
		//[Guid ("")]
		CodeObject CodeDOM {
			get;
		}


		//[Guid ("")]
		string SourceText {
			get;
			set;
		}


		//[Guid ("")]
		void AddEventSource (string eventSourceName, string eventSourceType);



		//[Guid ("")]
		void AppendSourceText (string text);

		
		//[Guid("")]
		void RemoveEventSource (string eventSourceName);
	}
}