Show / Hide Table of Contents

Class DotNetCompilationError

Details a .NET compilation error

Inheritance
System.Object
DotNetCompilationError
Implements
IFunctionBuildError
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 DotNetCompilationError class.

Declaration
public DotNetCompilationError()

DotNetCompilationError(String, Int32, Int32, String, String)

Initializes a new instance of the DotNetCompilationError class.

Declaration
public DotNetCompilationError(string fileName, int line, int column, string errorNumber, string errorText)
Parameters
Type Name Description
System.String fileName

Name of the file.

System.Int32 line

The line.

System.Int32 column

The column.

System.String errorNumber

The error number.

System.String errorText

The error text.

Properties

Column

Gets or sets the column.

Declaration
public int Column { get; set; }
Property Value
Type Description
System.Int32

The column.

ErrorNumber

Gets or sets the error number.

Declaration
public string ErrorNumber { get; set; }
Property Value
Type Description
System.String

The error number.

ErrorText

Gets or sets the error text.

Declaration
public string ErrorText { get; set; }
Property Value
Type Description
System.String

The error text.

FileName

Gets or sets the name of the file.

Declaration
public string FileName { get; set; }
Property Value
Type Description
System.String

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.Boolean

true if this instance is a warning; otherwise, false.

Line

Gets or sets the line.

Declaration
public int Line { get; set; }
Property Value
Type Description
System.Int32

The line.

Implements

IFunctionBuildError
In This Article
  • Constructors
    • DotNetCompilationError()
    • DotNetCompilationError(String, Int32, Int32, String, String)
  • Properties
    • Column
    • ErrorNumber
    • ErrorText
    • FileName
    • IsWarning
    • Line
  • Implements
Back to top Generated by DocFX