Enum MetadataModelValidationSeverity
public enum MetadataModelValidationSeverity
Fields
Error | Specifies that the validation item is an error, but that further error processing should be permitted to occur. This severity is used when an error is detected, but further errors may also be relevant to the current build. |
Fatal | Specifies that the validation item is an error and that it will immediately cause all further error processing to halt. This severity is used in cases where the error is so signifiacnt that any further errors are not necessarily meaningful once this error has been corrected, |
Message | Specifies that the validation item is a message. This severity does not impact build success and is presented only for informational purposes to the developer. |
Warning | Specifies that the validation item is a warning and should not cause the current build to fail, even the the developer may want to inspect and correct the identified issue. |