Skip to content

Severity Enum

Definition

This enumeration is a wrapper around the ApplicationInsights SeverityLevel Enumeration so that the user does not need to include ApplicationInsights in their project.

C#
public enum Severity

Fields

Verbose

Verbose Severity Level.

C#
Verbose = 0

Information

Information Severity Level.

C#
Information = 1

Warning

Warning Severity Level.

C#
Warning = 2

Error

Error Severity Level.

C#
Error = 3

Critical

Critical Severity Level.

C#
Critical = 4