Total .NET Analyzer Rule Documentation  

NotEventHandlerSuffix Rule

Only use the suffix 'EventHandler' for event handler type names.

Remarks

Using a standardized naming convention is an important element in writing code that is easy to read, understand, and maintain. Microsoft recommends that you use the suffix 'EventHandler' only for event handler types. Using this suffix for names that are not event handler types can make your code difficult to read and maintain.

Resolution

To keep your code easy to read and maintain, you should remove the suffix 'EventHandler' from names that are not event handler types.

(Note that this is standardized naming convention, so it has no effect on the execution of code.)

See Also

Event Naming Guidelines