Class DotNetCompilationError
Details a .NET compilation error
Inheritance
System.Object
DotNetCompilationError
Implements
Namespace: MESL.SqlRace.Domain.Functions.DotNetCompilation
Assembly: MESL.SqlRace.Domain.dll
Syntax
public sealed class DotNetCompilationError : Object, IFunctionBuildError
Constructors
DotNetCompilationError()
Initializes a new instance of the Dot
Declaration
public DotNetCompilationError()
DotNetCompilationError(String, Int32, Int32, String, String)
Initializes a new instance of the Dot
Declaration
public DotNetCompilationError(string fileName, int line, int column, string errorNumber, string errorText)
Parameters
Type | Name | Description |
---|---|---|
System. |
fileName | Name of the file. |
System. |
line | The line. |
System. |
column | The column. |
System. |
errorNumber | The error number. |
System. |
errorText | The error text. |
Properties
Column
Gets or sets the column.
Declaration
public int Column { get; set; }
Property Value
Type | Description |
---|---|
System. |
The column. |
ErrorNumber
Gets or sets the error number.
Declaration
public string ErrorNumber { get; set; }
Property Value
Type | Description |
---|---|
System. |
The error number. |
ErrorText
Gets or sets the error text.
Declaration
public string ErrorText { get; set; }
Property Value
Type | Description |
---|---|
System. |
The error text. |
FileName
Gets or sets the name of the file.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System. |
The name of the file. |
IsWarning
Gets or sets a value indicating whether this instance is a warning.
Declaration
public bool IsWarning { get; set; }
Property Value
Type | Description |
---|---|
System. |
|
Line
Gets or sets the line.
Declaration
public int Line { get; set; }
Property Value
Type | Description |
---|---|
System. |
The line. |