IssueType enumeration

Specifies the types of issues that can occur in Axe.

Syntax

enum IssueType {
  IssueTypeNone     = 0, 
  IssueTypeInfo     = 1, 
  IssueTypeWarning  = 2, 
  IssueTypeError    = 3, 
  IssueTypeInvalid  = 4 

};

Constants

IssueTypeNone

No error type was specified. This is an invalid value.

IssueTypeInfo

This issue is only informational.

IssueTypeWarning

This issue is a warning that should not block execution or cause it to fail prematurely.

IssueTypeError

This issue is an error that has blocked execution or caused it to fail prematurely.

IssueTypeInvalid

This is an invalid issue type. This enumerator is most often used for range checking the enumerator values. It should not be used to report any real issues.

Remarks

Managed code uses the IssueType enum.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
AxeCore.h