2 types derived from RuleAttribute
System.Workflow.Activities (2)
Rules\RuleAttributes.cs (2)
29public abstract class RuleReadWriteAttribute : RuleAttribute 296public sealed class RuleInvokeAttribute : RuleAttribute
17 references to RuleAttribute
System.Workflow.Activities (17)
Rules\Expressions.cs (8)
362object[] attrs = method.GetCustomAttributes(typeof(RuleAttribute), true); 369foreach (RuleAttribute ruleAttr in attrs) 1134object[] attrs = pi.GetCustomAttributes(typeof(RuleAttribute), true); 1141foreach (RuleAttribute ruleAttr in attrs) 1419object[] attrs = mi.GetCustomAttributes(typeof(RuleAttribute), true); 1426foreach (RuleAttribute ruleAttr in attrs) 2403object[] attrs = pi.GetCustomAttributes(typeof(RuleAttribute), true); 2410foreach (RuleAttribute ruleAttr in attrs)
Rules\References.cs (3)
78object[] attrs = member.GetCustomAttributes(typeof(RuleAttribute), true); 81RuleAttribute[] ruleAttrs = (RuleAttribute[])attrs;
Rules\RuleAttributes.cs (6)
361object[] attrs = mi.GetCustomAttributes(typeof(RuleAttribute), true); 364foreach (RuleAttribute invokedRuleAttr in attrs) 424object[] attrs = mi.GetCustomAttributes(typeof(RuleAttribute), true); 427RuleAttribute[] ruleAttrs = (RuleAttribute[])attrs; 430RuleAttribute ruleAttr = ruleAttrs[i];