C# Class ZocBuild.Database.Errors.MultipleStatementError

Represents an error caused by a script containing more than one statements, separated by the GO keyword.
Inheritance: BuildErrorBase
ファイルを表示 Open project: Zocdoc/ZocBuild.Database Class Usage Examples

Public Methods

Method Description
GetMessage ( ) : string

Returns the message for this error.

MultipleStatementError ( int count, int allotment ) : System

Creates an instance of a multiple statement error object.

Method Details

GetMessage() public method

Returns the message for this error.
public GetMessage ( ) : string
return string

MultipleStatementError() public method

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.
return System