C# Класс ZocBuild.Database.Errors.MultipleStatementError

Represents an error caused by a script containing more than one statements, separated by the GO keyword.
Наследование: BuildErrorBase
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetMessage ( ) : string

Returns the message for this error.

MultipleStatementError ( int count, int allotment ) : System

Creates an instance of a multiple statement error object.

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

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

Returns the message for this error.
public GetMessage ( ) : string
Результат string

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

Creates an instance of a multiple statement error object.
public MultipleStatementError ( int count, int allotment ) : System
count int The number of statements in the script.
allotment int The upper bound on number of statements.
Результат System