C# Класс MigraDoc.DocumentObjectModel.IO.DdlReaderError

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
ErrorLevel DdlErrorLevel
ErrorMessage string
ErrorNumber int
SourceColumn int
SourceFile string
SourceLine int

Открытые методы

Метод Описание
DdlReaderError ( DdlErrorLevel errorLevel, string errorMessage, int errorNumber ) : System
DdlReaderError ( DdlErrorLevel errorLevel, string errorMessage, int errorNumber, string sourceFile, int sourceLine, int sourceColumn ) : System

Initializes a new instance of the DdlReaderError class.

ToString ( ) : string

Returns a String that represents the current DdlReaderError.

Описание методов

DdlReaderError() публичный Метод

public DdlReaderError ( DdlErrorLevel errorLevel, string errorMessage, int errorNumber ) : System
errorLevel DdlErrorLevel
errorMessage string
errorNumber int
Результат System

DdlReaderError() публичный Метод

Initializes a new instance of the DdlReaderError class.
public DdlReaderError ( DdlErrorLevel errorLevel, string errorMessage, int errorNumber, string sourceFile, int sourceLine, int sourceColumn ) : System
errorLevel DdlErrorLevel
errorMessage string
errorNumber int
sourceFile string
sourceLine int
sourceColumn int
Результат System

ToString() публичный Метод

Returns a String that represents the current DdlReaderError.
public ToString ( ) : string
Результат string

Описание свойств

ErrorLevel публичное свойство

Specifies the severity of this diagnostic.
public DdlErrorLevel ErrorLevel
Результат DdlErrorLevel

ErrorMessage публичное свойство

Specifies the diagnostic message text.
public string ErrorMessage
Результат string

ErrorNumber публичное свойство

Specifies the diagnostic number.
public int ErrorNumber
Результат int

SourceColumn публичное свойство

Specifies the column of the source text that caused the diagnostic (1 based), or 0 if there is no column information.
public int SourceColumn
Результат int

SourceFile публичное свойство

Specifies the filename of the DDL text that caused the diagnostic, or an empty string ("").
public string SourceFile
Результат string

SourceLine публичное свойство

Specifies the line of the DDL text that caused the diagnostic (1 based), or 0 if there is no line information.
public int SourceLine
Результат int