Share via


Severity Enumeration

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

Reference

IParseSink::ErrorMessage Method

Other Resources

Babel Enumerations