C# Класс 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.
Наследование: IRule
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
GetCustomAttribute object

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
GetCustomAttribute ( Type t ) : object

Описание методов

Initialize() публичный Метод

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.
Результат void

TearDown() публичный Метод

public TearDown ( ) : void
Результат void