Table of Contents

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

errorText string
fileName string
line int
column int
errorNumber string
isWarning bool

Properties

Column

The column number of the error location.

public int Column { get; }

Property Value

int

ErrorNumber

The number of the error.

public string ErrorNumber { get; }

Property Value

string

ErrorText

The error text of the error.

public string ErrorText { get; }

Property Value

string

FileName

The file name of the error source.

public string FileName { get; }

Property Value

string

IsWarning

Indicates whether the error is a warning.

public bool IsWarning { get; }

Property Value

bool

Line

The line number of the error location

public int Line { get; }

Property Value

int
To top