- Flag-Enum mit Null und SecurityBreach definiert. - Flag-Eigenschaft und HasFlag-Methode zu IServiceMessage hinzugefügt.
19 lines
671 B
C#
19 lines
671 B
C#
namespace DigitalData.Core.Application
|
|
{
|
|
/// <summary>
|
|
/// Defines flags that indicate specific types of status or conditions in a service operation.
|
|
/// These flags help in categorizing and identifying specific circumstances or issues that may arise during execution.
|
|
/// </summary>
|
|
public enum Flag
|
|
{
|
|
/// <summary>
|
|
/// Indicates that no specific condition or status is associated with the service operation.
|
|
/// </summary>
|
|
Null,
|
|
|
|
/// <summary>
|
|
/// Indicates a security breach or vulnerability has been detected during the service operation.
|
|
/// </summary>
|
|
SecurityBreach
|
|
}
|
|
} |