CompilerWorkDoneEventArgs Constructor
Namespace: DevCase.Core.Diagnostics.CodeCompilationAssembly: 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
)
Public Sub New (
codeDomProvider As CodeDomProvider,
compilerParameters As CompilerParameters,
compilerWarnings As IEnumerable(Of CompilerWarning),
compileErrors As IEnumerable(Of CompilerError),
sourceCode As String,
sourceFilePath As String,
targetFilePath As String,
tempDirectoryPath As String
)
Dim codeDomProvider As CodeDomProvider
Dim compilerParameters As CompilerParameters
Dim compilerWarnings As IEnumerable(Of CompilerWarning)
Dim compileErrors As IEnumerable(Of CompilerError)
Dim sourceCode As String
Dim sourceFilePath As String
Dim targetFilePath As String
Dim tempDirectoryPath As String
Dim instance As New CompilerWorkDoneEventArgs(codeDomProvider,
compilerParameters, compilerWarnings,
compileErrors, sourceCode, sourceFilePath,
targetFilePath, tempDirectoryPath)
public:
CompilerWorkDoneEventArgs(
CodeDomProvider^ codeDomProvider,
CompilerParameters^ compilerParameters,
IEnumerable<CompilerWarning^>^ compilerWarnings,
IEnumerable<CompilerError^>^ compileErrors,
String^ sourceCode,
String^ sourceFilePath,
String^ targetFilePath,
String^ tempDirectoryPath
)
new :
codeDomProvider : CodeDomProvider *
compilerParameters : CompilerParameters *
compilerWarnings : IEnumerable<CompilerWarning> *
compileErrors : IEnumerable<CompilerError> *
sourceCode : string *
sourceFilePath : string *
targetFilePath : string *
tempDirectoryPath : string -> CompilerWorkDoneEventArgs
No code example is currently available or this language may not be supported.
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.