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
IsOperationMethodPublicAnalyzerConstants.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 public static class IsOperationMethodPublicAnalyzerConstants
4 {
5 public const string Title = "Find CSLA Operations That are Public";
6 public const string IdentifierText = "IsOperationMethodPublic";
7 public const string IsSealed = "IsSealed";
8 public const string Message = "CSLA operations should not be public";
9 }
10
11 public static class IsOperationMethodPublicAnalyzerMakeNonPublicCodeFixConstants
12 {
13 public const string InternalDescription = "Make CSLA operation internal";
14 public const string ProtectedDescription = "Make CSLA operation protected";
15 public const string PrivateDescription = "Make CSLA operation private";
16 }
17}