CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
RuleSeverity.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RuleSeverity.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Values for validation rule severities.</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Rules
11{
15 public enum RuleSeverity
16 {
23 Error,
24
32 Warning,
33
41
50 }
51}
RuleSeverity
Values for validation rule severities.
Definition: RuleSeverity.cs:16
@ Warning
Represents a business rule violation that should be displayed to the user, but which should not make ...
@ Success
Represents a business rule result that should not be displayed to the user, and where the rule was su...
@ Error
Represents a serious business rule violation that should cause an object to be considered invalid.
@ Information
Represents a business rule result that should be displayed to the user, but which is less severe than...