Namespace:
NetQuarry.Services
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum AlertAttrs
<FlagsAttribute>
Public Enumeration AlertAttrs
Members
| Member name | Value | Description |
---|
| DisplayMessage | 1 |
Indicates that this alert is a page message (typically created via DisplayMessage(Alert), or one of its overloads,
and should not be delivered via the alert scan mechanism UNLESS the DeliverByScan attribute is also set. This provides
for backward compatibility with the existing alert facility.
|
| DeliverByScan | 16 |
Explicitly specifies that this alert should be delivered via the alert scan mechanism even if the
alert is marked with DisplayMessage to identify it as a page message.
|
| SeverityInfo | 4096 |
This is an informational message/alert.
You should set only ONE severity. If multiple severities are specified the most severe is used.
|
| SeverityWarning | 8192 |
This is a warning message/alert.
You should set only ONE severity. If multiple severities are specified the most severe is used.
|
| SeverityError | 16384 |
This is an error message/alert.
You should set only ONE severity. If multiple severities are specified the most severe is used.
|
| SeverityCritical | 32768 |
This is a critical message/alert.
You should set only ONE severity. If multiple severities are specified the most severe is used.
|
| SeverityMask | 61440 |
The mask of bits set aside for severity.
|
| HtmlBody | 65536 |
The alert body contains HTML and should not be escaped.
|
See Also