C# Class ZocBuild.Database.Errors.MismatchedSchemaError

Represents an error caused by the schema of the programmable object not matching its directory.
Inheritance: BuildErrorBase
Afficher le fichier Open project: Zocdoc/ZocBuild.Database Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

GetMessage() public méthode

Returns the message for this error.
public GetMessage ( ) : string
Résultat string

MismatchedSchemaError() public méthode

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.
Résultat System