Severity

Specifies levels of severity of a task list item associated with a parsing operation in a Babel Package language service.

enum Severity { 
   SevHint,
   SevWarning,
   SevError,
   SevFatal
};

Elements

  • SevHint
    Specifies informational message.

  • SevWarning
    Specifies warning message (parsing can continue).

  • SevError
    Specifies error message (parsing may or may not be able to continue).

  • SevFatal
    Specifies fatal error message (parsing cannot continue).

Remarks

These values are passed to the IParseSink::ErrorMessage Method to indicate the severity of the parsing error and control the type of icon that is displayed in the Error List task window.

See Also

Concepts

Babel Enumerations

IParseSink::ErrorMessage Method