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

Represents an error caused by the schema of the programmable object not matching its directory.
Наследование: BuildErrorBase
Показать файл Открыть проект Примеры использования класса

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

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

Returns the message for this error.

MismatchedSchemaError ( string objectName, string expected, string actual ) : System

Creates an instance of a mismatched schema error object.

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

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

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

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

Creates an instance of a mismatched schema error object.
public MismatchedSchemaError ( string objectName, string expected, string actual ) : System
objectName string The name of the build item.
expected string The schema to which the directory belongs.
actual string The schema of the object in the script content.
Результат System