C# Class Gendarme.Framework.Rule

Most rules should be able to inherit from Rule and implement one of the IAssemblyRule, ITypeRule or IMethodRule and override the Check[Assembly|Type|Method] method.
Inheritance: IRule
Afficher le fichier Open project: remobjects/mono-tools

Private Properties

Свойство Type Description
GetCustomAttribute object

Méthodes publiques

Méthode Description
Initialize ( IRunner runner ) : void

Initialize the rule. This is where rule can do it's heavy initialization since the assemblies to be analyzed are already known (and accessible thru the runner parameter).

TearDown ( ) : void

Private Methods

Méthode Description
GetCustomAttribute ( Type t ) : object

Method Details

Initialize() public méthode

Initialize the rule. This is where rule can do it's heavy initialization since the assemblies to be analyzed are already known (and accessible thru the runner parameter).
public Initialize ( IRunner runner ) : void
runner IRunner The runner that will execute this rule.
Résultat void

TearDown() public méthode

public TearDown ( ) : void
Résultat void