Delegate ValidationDelegate
This delegate allows extending the Analyzer with extra rule validation for custom rules.
Namespace: Microsoft.CST.OAT.Operations
Assembly: OAT.dll
Syntax
public delegate IEnumerable<Violation> ValidationDelegate(Rule rule, Clause clause);
Parameters
| Type | Name | Description |
|---|---|---|
| Rule | rule | The Target Rule |
| Clause | clause | The Target Clause |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<Violation> | (If the validation applied, The Enumerable of Violations found) |