Class TemplateCompilerError
- Namespace
- Dynamicweb.Rendering
- Assembly
- Dynamicweb.Core.dll
public class TemplateCompilerError
- Inheritance
-
TemplateCompilerError
- Inherited Members
Constructors
TemplateCompilerError(string, string, int, int, string, bool)
Creates a new Compiler error instance.
public TemplateCompilerError(string errorText, string fileName, int line, int column, string errorNumber, bool isWarning)
Parameters
Properties
Column
The column number of the error location.
public int Column { get; }
Property Value
ErrorNumber
The number of the error.
public string ErrorNumber { get; }
Property Value
ErrorText
The error text of the error.
public string ErrorText { get; }
Property Value
FileName
The file name of the error source.
public string FileName { get; }
Property Value
IsWarning
Indicates whether the error is a warning.
public bool IsWarning { get; }
Property Value
Line
The line number of the error location
public int Line { get; }