By default, this rule only looks at externally visible identifiers, but this is configurable.
Rule description
By convention, the names of types that extend certain base types or that implement certain interfaces, or types derived from these types, have a suffix that is associated with the base type or interface.
Naming conventions provide a common look for libraries that target the common language runtime. This reduces the learning curve that is required for new software libraries, and increases customer confidence that the library was developed by someone who has expertise in developing managed code.
The following table lists the base types and interfaces that have associated suffixes.
Types that implement ICollection and are a generalized type of data structure, such as a dictionary, stack, or queue, are allowed names that provide meaningful information about the intended usage of the type.
Types that implement ICollection and are a collection of specific items have names that end with the word Collection. For example, a collection of Queue objects would have the name QueueCollection. The Collection suffix signifies that the members of the collection can be enumerated by using the foreach (For Each in Visual Basic) statement.
Types that implement IDictionary or IReadOnlyDictionary<TKey,TValue> have names that end with the word Dictionary even if the type also implements IEnumerable or ICollection. The Collection and Dictionary suffix naming conventions enable users to distinguish between the following two enumeration patterns.
Types with the Collection suffix follow this enumeration pattern.
C#
foreach(SomeType x in SomeCollection) { }
Types with the Dictionary suffix follow this enumeration pattern.
Rename the type so that it is suffixed with the correct term.
When to suppress warnings
It is safe to suppress a warning to use the Collection suffix if the type is a generalized data structure that might be extended or that will hold an arbitrary set of diverse items. In this case, a name that provides meaningful information about the implementation, performance, or other characteristics of the data structure might make sense (for example, BinaryTree). In cases where the type represents a collection of a specific type (for example, StringCollection), do not suppress a warning from this rule because the suffix indicates that the type can be enumerated by using a foreach statement.
For other suffixes, do not suppress a warning from this rule. The suffix allows the intended usage to be evident from the type name.
Suppress a warning
If you just want to suppress a single violation, add preprocessor directives to your source file to disable and then re-enable the rule.
C#
#pragmawarning disable CA1710// The code that's violating the rule is on this line.#pragmawarning restore CA1710
To disable the rule for a file, folder, or project, set its severity to none in the configuration file.
You can configure these options for just this rule, for all rules they apply to, or for all rules in this category (Naming) that they apply to. For more information, see Code quality rule configuration options.
Include specific API surfaces
You can configure which parts of your codebase to run this rule on, based on their accessibility, by setting the api_surface option. For example, to specify that the rule should run only against the non-public API surface, add the following key-value pair to an .editorconfig file in your project:
Replace the XXXX part of CAXXXX with the ID of the applicable rule.
Exclude indirect base types
You can configure whether to exclude indirect base types from the rule. By default, this option is set to true, which restricts analysis to the current base type.
You can provide additional required suffixes or override the behavior of some hardcoded suffixes by adding the following key-value pair to an .editorconfig file in your project:
All types that inherit from 'MyClass' are required to have the 'Class' suffix AND all types that implement 'MyNamespace.IPath' are required to have the 'Path' suffix.
Izvor za ovaj sadržaj možete pronaći na GitHubu, gdje možete stvarati i pregledavati probleme i zahtjeve za povlačenjem. Dodatne informacije potražite u našem vodiču za suradnike.
Povratne informacije o proizvodu .NET
.NET je projekt otvorenog koda. Odaberite vezu za slanje povratnih informacija:
Pridružite se seriji susreta kako biste s kolegama programerima i stručnjacima izgradili skalabilna rješenja umjetne inteligencije temeljena na stvarnim slučajevima upotrebe.