CA1813: Avoid unsealed attributes
Visual Studio 2012
|
TypeName |
AvoidUnsealedAttributes |
|
CheckId |
CA1813 |
|
Category |
Microsoft.Performance |
|
Breaking Change |
Breaking |
A public type inherits from System.Attribute, is not abstract, and is not sealed (NotInheritable in Visual Basic).
The .NET Framework class library provides methods for retrieving custom attributes. By default, these methods search the attribute inheritance hierarchy; for example Attribute.GetCustomAttribute searches for the specified attribute type, or any attribute type that extends the specified attribute type. Sealing the attribute eliminates the search through the inheritance hierarchy, and can improve performance.
The following example shows a custom attribute that satisfies this rule.
using System; namespace PerformanceLibrary { // Satisfies rule: AvoidUnsealedAttributes. [AttributeUsage(AttributeTargets.Class|AttributeTargets.Struct)] public sealed class DeveloperAttribute: Attribute { private string nameValue; public DeveloperAttribute(string name) { nameValue = name; } public string Name { get { return nameValue; } } } }