CompilerWorkDoneEventArgs Constructor

Initializes a new instance of the CompilerWorkDoneEventArgs class.

Definition

Namespace: DevCase.Core.Diagnostics.CodeCompilation
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public CompilerWorkDoneEventArgs(
	CodeDomProvider codeDomProvider,
	CompilerParameters compilerParameters,
	IEnumerable<CompilerWarning> compilerWarnings,
	IEnumerable<CompilerError> compileErrors,
	string sourceCode,
	string sourceFilePath,
	string targetFilePath,
	string tempDirectoryPath
)

Parameters

codeDomProvider  CodeDomProvider
The CodeDom provider.
compilerParameters  CompilerParameters
The compiler parameters used to build the target file.
compilerWarnings  IEnumerableCompilerWarning
The compiler warnings.
compileErrors  IEnumerableCompilerError
The compile errors.
sourceCode  String
The source code string (if any).
sourceFilePath  String
The source file path (if any).
targetFilePath  String
The target .NET assembly filepath.
tempDirectoryPath  String
The temporary files path used for the compiler.

See Also