CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
EvaluateManagedBackingFieldsAnalayzerConstants.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 public static class EvaluateManagedBackingFieldsAnalayzerConstants
4 {
5 public const string Title = "Evaluate Managed Backing Fields";
6 public const string IdentifierText = "ManagedBackingFieldMustBePublicStaticAndReadOnlyRule";
7 public const string Message = "Managed backing fields must be public, static and read-only";
8 }
9
10 public static class EvaluateManagedBackingFieldsCodeFixConstants
11 {
12 public const string FixManagedBackingFieldDescription = "Fix managed backing field declaration";
13 }
14}