Hinzufügen und Dokumentieren von Flag-Erweiterungsmethoden in ServiceMessageExtensions zum Setzen und Überprüfen von Flags

This commit is contained in:
Developer 02
2024-04-22 16:10:57 +02:00
parent 29cdbbf7b1
commit 385a286ef5
180 changed files with 24 additions and 4010 deletions

View File

@@ -6,11 +6,6 @@
/// </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>
@@ -25,7 +20,7 @@
/// <summary>
/// Indicates that either a security breach, a data integrity issue, or both have been detected during the service operation.
/// This flag is used when one or both types of issues are present, requiring heightened attention to both security and data accuracy.
/// This flag is used when it is not sure whether the problem is security or data integrity. In this case, data integrity should be checked first.
/// </summary>
SecurityBreachOrDataIntegrity
}