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

ICodeCompiler.cs « System.CodeDom.Compiler « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a6484b09281674e2b68fd3de5cd23fa560bf135 (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
//
// System.CodeDom.Compiler ICodeCompiler Interface
//
// Author:
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) 2002 Ximian, Inc.
//

namespace System.CodeDom.Compiler
{
	public interface ICodeCompiler
	{
		CompilerResults CompileAssemblyFromDom( CompilerParameters options,
							CodeCompileUnit compilationUnit );

		CompilerResults CompileAssemblyFromDomBatch( CompilerParameters options,
							     CodeCompileUnit[] batch );

		CompilerResults CompileAssemblyFromFile( CompilerParameters options,
							 string fileName );

		CompilerResults CompileAssemblyFromFileBatch( CompilerParameters options,
							      string[] batch );

		CompilerResults CompileAssemblyFromSource( CompilerParameters options,
							   string source );

		CompilerResults CompileAssemblyFromSourceBatch( CompilerParameters options,
								string[] batch );
	}
}