ABB.Swum.ReactiveRule.MakeClassification C# (CSharp) Метод

MakeClassification() защищенный метод

Determines whether the given MethodDeclarationNode meets the conditions for this rule. This method assumes that the name is parsed, preamble is stripped, and digits and prepositions are tagged.
protected MakeClassification ( MethodDeclarationNode node ) : bool
node ABB.Swum.Nodes.MethodDeclarationNode The MethodDeclarationNode to test.
Результат bool
        protected override bool MakeClassification(MethodDeclarationNode node)
        {
            return IsEventHandler(node.ParsedName);
        }